New answers tagged text
0
There's still a famous and often-requested break indent patch in the queue for Vim; this will improve on the existing 'showbreak' by properly indenting the wrapped line.
1
Sublime Text 2 also has this feature, and the width and type of indent are configurable.
2
Possibly something is constantly stealing the X selection. To find out who it is. You could compile this:
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xatom.h>
int main() {
printf("0x%x\n", XGetSelectionOwner (XOpenDisplay(0), XA_PRIMARY));
return 0;
}
With:
gcc that-file.c -lX11
That code is to return the window ID of ...
Top 50 recent answers are included
