Comments on: Vim is still sexy! http://floatingsun.net/2009/04/18/vim-is-still-sexy/?utm_source=rss&utm_medium=rss&utm_campaign=vim-is-still-sexy Sat, 11 May 2013 19:51:19 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: Should you have One Editor for Everything? | Bryant Rethinks Software http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-200247 Should you have One Editor for Everything? | Bryant Rethinks Software Thu, 06 May 2010 02:43:14 +0000 http://floatingsun.net/?p=1109#comment-200247 [...] happy with the lightweight e-text-editor. I might even try dusting off good old vim. I hear it’s still sexy. And it could be the just the right tool for rails on [...]

]]>
By: Vim and the future of editors http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-197017 Vim and the future of editors Tue, 09 Mar 2010 06:58:12 +0000 http://floatingsun.net/?p=1109#comment-197017 [...] Who’s WhoLegaleseContact « Vim is still sexy! Irony [...]

]]>
By: Reconsidering Vim http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-189066 Reconsidering Vim Sun, 08 Nov 2009 23:33:24 +0000 http://floatingsun.net/?p=1109#comment-189066 [...] get me wrong — I think Vim still has a lot to offer. But, I can not deny that Vim is not what I would call a “forward looking editor.” [...]

]]>
By: Alif Rachmawadi http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-184723 Alif Rachmawadi Sun, 23 Aug 2009 14:12:58 +0000 http://floatingsun.net/?p=1109#comment-184723 Hi Diwaker Gupta.
I am Vim user.. I used it every single day, and I love it.
Recently I post short blog post about tricks on Vim.

]]>
By: odullu yarisma http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-183160 odullu yarisma Mon, 27 Jul 2009 08:03:08 +0000 http://floatingsun.net/?p=1109#comment-183160 There are several screenshots on the xoria page. I’ll embed one in the post directly. Here is one of the screenshots:

]]>
By: ptz http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-181691 ptz Mon, 06 Jul 2009 21:19:56 +0000 http://floatingsun.net/?p=1109#comment-181691 hey Tom Rope links broken.. can yo edit your comment ?

]]>
By: steve http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-179404 steve Sun, 14 Jun 2009 15:24:06 +0000 http://floatingsun.net/?p=1109#comment-179404 this is my hand-rolled .vimrc which has syntax highlighting, folding and more and I set up exuberant ctags some while ago.

vim is uber-sexy. I’m just looking for some decent IDE stuff and I’m set (not checked out minibuf yet).

my criteria is I’m a touch typist and any plugins or scripts *have* to be keyboard easy.

also I remap my keyboard using xmodmap to sway Caps Lock and Escape (regedit if you want to do this in windows).

as promised.

1 ” Steve’s .vimrc
2 ” 25th March 2009
3
4 ” this has to be the first command as it affects everything else
5 set nocompatible
6
7 ” this allows backspace to work as expected when in insert mode
8 set backspace=indent,eol,start
9 set wrap! ” turns of word wrapping
10
11 ” some prettyfying of looks
12
13 syntax on “syntax highlighting
14 set showmode
15 set showcmd ” show incomplete commands
16 set ruler ” show cursor all the time
17
18 ” some search configuration
19
20 set hlsearch “highlight search matches
21 set incsearch ” enable incremental searches
22 set ignorecase ” make searches case insensitive
23 set smartcase ” except when all caps
24
25 ” The following settings control tabs and indentation
26
27 set autoindent
28 filetype plugin indent on ” load indent files to do language dependent indenting
29 set ts=4 ” set tabstop
30 set shiftwidth=4 ” indent width for autoindent
31 filetype indent on ” indent depends on filetype
32
33 ” this is folding ** have to look this up to use correctly but it is cool
34
35 set foldenable ” turn it on
36 set fdm=indent ” make it fold indents
37 “following line apparently allows space to toggle folds (coolio and if you
38 “find it here it does
39 nnoremap za
40
41 ” miscellaneous settings that I can’t fit elsewhere
42 “Informative status line
43 set statusline=%F%m%r%h%w\ [TYPE=%Y\ %{&ff}]\ [%l/%L\ (%p%%)]
44 set number
45 colorscheme elflord

]]>
By: Diwaker Gupta http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-178566 Diwaker Gupta Tue, 09 Jun 2009 19:02:07 +0000 http://floatingsun.net/?p=1109#comment-178566 Haha, well said Oliver!

]]>
By: Oliver Z http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-177993 Oliver Z Fri, 05 Jun 2009 16:17:45 +0000 http://floatingsun.net/?p=1109#comment-177993 Vim is and always will be sexy until some other editor can prove useful and powerful enough with its keybindings. How many editors out there allow you to have both hands on the home row of your keyboard all day long (an editor that doesn’t come with every feature of your operating system implemented in lisp)?

]]>
By: andywatts http://floatingsun.net/2009/04/18/vim-is-still-sexy/#comment-174240 andywatts Sat, 16 May 2009 17:57:23 +0000 http://floatingsun.net/?p=1109#comment-174240 NERDtree, folding and syntax highlighting.
I love vim.

]]>