| bio | website | cachivaches.chauca.net |
|---|---|---|
| location | ||
| age | 37 | |
| visits | member for | 2 years, 2 months |
| seen | yesterday | |
| stats | profile views | 12 |
|
Jul 23 |
awarded | Constituent |
|
Jul 22 |
awarded | Caucus |
|
Jun 22 |
awarded | Commentator |
|
Jun 22 |
comment |
Vim: Captue 'filetype command' state to variable? Correct. I've updated the code. I always make that mistake with matchlist() and I'm left wondering what's wrong... |
|
Jun 22 |
revised |
Vim: Captue 'filetype command' state to variable? Added missing item to hold the whole matched text. |
|
Jun 22 |
answered | Vim: Captue 'filetype command' state to variable? |
|
Jun 18 |
comment |
Vim: show subfold headers inside closed folds You can define your own function to show the fold text that you prefer and set the foldtext option to it. See :help fold-foldtext for an example. |
|
May 8 |
comment |
Install vim with clipboard support using Macports in OS X 10.7.3 Are you sure that +huge provides access to the clipboard? from what I see on the port file it just adds the --with-features=huge argument. |
|
Mar 4 |
comment |
Backspacing with vim That depends on what is the context, without any more info Esc + 4Xx would do the same. If you give a sample of the text maybe we could see if there is a shorter way. |
|
May 27 |
comment |
Remove Lines in VIM with Only Whitespace:g[lobal] applies an ex command to the lines that match a given pattern. So, in the given solution :global will search for lines with 0 or more white space (/^\s*$/) and apply the :d[elete] command on them. See :h :global for more details and alternatives. |
|
May 15 |
awarded | Supporter |
|
Apr 12 |
comment |
Is there a setting that will allow vim to remember the column it was on, even if traverses a line who's EOL is less? Are you sure it doesn't? Vim tries to keep the cursor on the same column. |
|
Apr 4 |
comment |
Time of day as conditional in Vim I didn't mean it that way, Vim's help can be a bit difficult to work with at first, that's why I pointed that page to you ;) |
|
Apr 3 |
comment |
Time of day as conditional in Vim Have you seen :help time-functions ? |
|
Apr 1 |
comment |
How to have Vim launched and opening a specific folder at startup on MacOS? You can find some choices in the "Save as..." dialog. |
|
Mar 31 |
revised |
How to have Vim launched and opening a specific folder at startup on MacOS? added 8 characters in body; deleted 1 characters in body |
|
Mar 30 |
awarded | Editor |
|
Mar 30 |
revised |
How to have Vim launched and opening a specific folder at startup on MacOS? Fix command. |
|
Mar 30 |
suggested | suggested edit on How to have Vim launched and opening a specific folder at startup on MacOS? |
|
Mar 30 |
comment |
How to have Vim launched and opening a specific folder at startup on MacOS? The vimrc is sourced before any plugins, so that command is not available. I have edited the answer to use an autocmd that will run when Vim has finished starting. |