All Questions
Tagged with programming text-processing
5 questions
0
votes
0
answers
143
views
Geany: Possible to automatically enable/disable line wrap dependent on file type?
In Geany text editor / IDE, is there a way to tell it to automatically enable line wrapping for certain file types, but not for others?
For example, for .txt files, I would like it to always enable ...
1
vote
1
answer
63
views
vi with files/directories on the side?
I'm wondering if there's a plugin or a way to make vi/vim have collapseable folders/files on the left side like a regular IDE.
-3
votes
4
answers
122
views
Transforming letters in columns into numbers
I want to transform the letters in two columns into numbers.
In the following example I want to change the letters in column 2 and 3 for numbers, so that A is changed to 1, B into 2, C into 3 and G ...
0
votes
2
answers
373
views
Command "paste - - - - ", how to specify a big column number
In command paste - - - -, numbers of - is equal the future column number. In my case, I have 55,000 future column, for me wont need to put 55,000 - what I will can use?
Example:
title1:A1
title2:A2
...
1
vote
1
answer
428
views
How do I keep 'indent' from moving curly braces to the next line?
I have several empty inline function definitions in C++ like so:
class C
{
void foo(){}
void bar(){}
};
now if I run indent -st -i4 -nut test.cc in order to just fix the indentation I get
...