vote up 2 vote down star
2

Hello,

I usually use Crimson or Notepad++ for coding, and they work great. Sometimes though I must edit code directly on the server through the ssh session - I generally use nano or vi.

Is there a code editor with syntax highlighting (very important), macros, and search and replace (regex included) available for console-based sessions?

flag

Closed. We REALLY don't need any more emacs vs vim – Orion Edwards Oct 7 '08 at 3:37

closed as subjective and argumentative by Orion Edwards Oct 7 '08 at 3:37

7 Answers

vote up 19 vote down check

vim has all those things you listed. I use it every day for every text editing purpose, on every platform (unix, windows, and OS X).

link|flag
awesome... just what i needed – DV Oct 5 '08 at 5:14
"vi is a subset of devil" - don't know where I read that :) – VVS Oct 5 '08 at 12:39
probably richard stallman! (-: – Rob Wells Oct 14 '08 at 22:39
I still don't understand why people think Vim is better than emacs. – Rayne Jan 29 at 7:09
vote up 8 vote down

Vim. See Cream :: a modern configuration of the Vim text editor, or feel free to use (parts or all of) mine. It's also available in full (including .vimrc and .vim):

$ cat ~/.vimrc
set nocompatible
set backspace=indent,eol,start
set ruler
set showcmd
set wildmenu
set fo=cqrt
set laststatus=2
set textwidth=78
set ww=<,>,h,l
set autoindent
" set no error bells
set noeb visualbell
set expandtab
set tabstop=4
set shiftwidth=4
set expandtab
let mapleader = ","
let maplocalleader = ","
syn on
filetype plugin indent on

" always display minimum 5 lines above and below the cursor
set scrolloff=5
" do *not* resize all windows.
set noequalalways
"set winfixheight " can be set if equalalways is on to avoid height/width maximization

" folding
set foldmethod=indent
set foldlevel=0
set foldnestmax=2

"------------------------
" statusline
"------------------------
set fillchars=stl:\ ,stlnc:\ ,vert:\|,fold:\ ,diff:-
set statusline=%<%f\ %h%m%r%=%-14.(%l,%c%V%)\ %P\ of\ %L\ \(%.45{getcwd()}\)


" ---------------------------------------------
"  Completion w/ Shift-TAB (xfce4-terminal)
"  Note: SuperTab might remap stuff..
" ---------------------------------------------
if !has("gui_running")
    imap <Esc>[Z <C-P>
    vmap <Esc>[Z <
    nmap <Esc>[Z <<
    nmap <Tab> >>
endif



" Esc gets you back to original, Enter selects.
inoremap <expr> <Esc> pumvisible()?"\<C-E>":"\<Esc>" 
inoremap <expr> <CR>  pumvisible()?"\<C-Y>":"\<CR>"
inoremap <expr> j     pumvisible()?"\<C-N>":"j" 
inoremap <expr> k     pumvisible()?"\<C-P>":"k"


" Look for the tags file in the current directory,
" and look for the tags file in the _current file's_ directory. With the ;
" appended to the end, vim searches (see |file-searching| until / is reached)
set tags=tags,./tags;

" jump to tag: ctrl-space (which yields a ctrl-@)
map <C-@> <C-]>
let OmniCpp_ShowPrototypeInAbbr = 1

" alternate script
nmap <Leader>in :A<CR>
nmap <Leader>is :AS<CR>
nmap <Leader>ivs :AV<CR>

" jump to the insert point after pasting
nmap <Leader>p p`.
nmap <Leader>P P`.

" always open new vertical splits to the right
set splitright

" make mouse work for Terminal-vims
set mouse=nv

"---------------------------------------------
" Disable cursorline on inactive buffers
"---------------------------------------------
autocmd WinLeave * set nocursorline
autocmd WinEnter * set cursorline

set cursorline


" 256 colors, yay!
set t_Co=256

colorscheme desert256

if has("gui_running")
    hi Normal guibg=Black
endif
hi StatusLine ctermbg=white ctermfg=160
hi StatusLineNC ctermbg=black ctermfg=gray
hi Folded term=NONE ctermbg=0 ctermfg=237 guifg=Green guibg=Black

hi WildMenu term=NONE cterm=bold ctermbg=blue ctermfg=8
"
" clear blue background, white foreground
hi CursorLine cterm=NONE guibg=#333333 guifg=#ffffff ctermbg=235 ctermfg=255
hi NonText term=NONE guibg=black guifg=white ctermbg=black ctermfg=white
hi TabLineFill ctermfg=black ctermbg=black guifg=black guibg=black
hi TabLine term=NONE ctermfg=gray ctermbg=black guifg=gray guibg=black
hi TabLineSel term=NONE ctermfg=white ctermbg=black guifg=white guibg=black

set number
set whichwrap=h,l,[,]

set showmatch

" move within long lines
noremap j gj
noremap k gk
nnoremap <C-J> <C-W>j
nnoremap <C-K> <C-W>k


"---------------------------
" Misc
"---------------------------

" When editing a file, always jump to the last cursor position
autocmd BufReadPost *
  \ if line("'\"") > 0 && line ("'\"") <= line("$") |
  \   exe "normal g'\"" |
  \ endif

" keep 50 lines of command line/search/etc history
set history=50

" ignore case, except if there's at least one upper-case character
" highlight search results
set ignorecase
set smartcase
set hlsearch

"Show menu with possible completions
set wildmenu

" Ignore these files when completing names and in Explorer
set wildignore=.svn,CVS,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif

" [nvilc]noremap means no remapping of right hand side.
" where nvilc is normal, visual, insert, ... 

"--------------------------
" Tabs
"--------------------------
" also, gt/gT...

" C-PageUp, C-PageDown
nmap <Esc>[5;5~ :tabprevious<cr>
nmap <Esc>[6;5~ :tabnext<cr>

"--------------------------------
" Buffers
"--------------------------------

" switch buffers
nmap <Esc>[6;3~ :bnext<CR>
nmap <Esc>[5;3~ :bprevious<CR>
" C-right, C-left
nmap <Esc>[1;5C :bnext<CR>
nmap <Esc>[1;5D :bprevious<CR>


" switch to previous buffer
noremap <F10> :b#<CR>

" remap Ex-mode into reformatting the current paragraph in visual mode
" or the current paragraph in normal mode (plus following if count specified).
nnoremap Q gqap
vnoremap Q gq

" Spelling!
if has("spell")
  " turn spelling on by default
  set nospell

  " toggle spelling with F4 key
  map <F4> :set spell!<CR><Bar>:echo "Spell Check: " . strpart("OffOn", 3 * &spell, 3)<CR>

  " they were using white on white
  highlight PmenuSel ctermfg=black ctermbg=lightgray

  " limit it to just the top 10 items
  set sps=best,10                    
endif

" only the status window left
set winminheight=0

" smart indentation everywhere
set smartindent

" smart-indent for python files, yay!
augroup filetypedetect
    autocmd! BufNewFile,BufRead *.py set cinwords=if,elif,else,for,while,try,except,finally,def,class
    autocmd! BufNewFile,BufRead *.tac set cinwords=if,elif,else,for,while,try,except,finally,def,class
    autocmd! BufNewFile *.py 0r ~/.vim/skeleton/python.py 
    " lilypond
    autocmd! BufNewFile,BufRead *.ly setf lilypond
    set runtimepath+=/usr/share/lilypond/2.10.5/vim/
augroup END

" auto-close XML tags on <C-_>
let g:closetag_html_style=1
autocmd Filetype xhtml,html,xml,xsl,php,kid source ~/.vim/plugin/closetag.vim | set tw=0

let python_highlight_all=1
let python_slow_sync=1

runtime plugin/matchit.vim

" show tabs as >-xN in Makefiles and Python source
autocmd FileType make,py set list listchars=tab:>-
link|flag
the script didn't work, it complained of missing .vim files and missing themes. as far as cream, it requires "gvim" to be installed, which seems to be GUI-based – DV Oct 5 '08 at 7:40
It was meant as inspiration. You can still use parts of Cream and/or my configuration file; nobobdy really copies configuration right over without modifying it to their own needs. – Mikael Jansson Oct 5 '08 at 11:42
got it.. i'll see what i can do with it, thanks! – DV Oct 5 '08 at 12:07
vote up 6 vote down

vim and emacs have everything, but sometimes joe is appreciated for its simplicity

link|flag
vote up 5 vote down

I favor emacs. Emacs vs Vi are typically holy wars. But I once spent some time focusing on making decent use of Emacs including the shortkeys etc and I find (or at least I like to think) I can work extremely fast using that one editor. So the real conclusion is it doesn't matter WHAT you use, but it does matter HOW you use it.

The main advantage of something like vi or emacs (above things like other editors) is that due to their popularity and open source nature, they are available on lots of platforms and many other people will gladly give you suggestions on how to better make use of your editor.

link|flag
vote up 2 vote down

If you "generally use nano or vi", then vim is probably the best option.

link|flag
vote up 0 vote down

I usually use pico

link|flag
vote up 0 vote down

Sometimes though I must edit code directly on the server through the ssh session

Just because an editor is GUI based that doesn't stop if from also being able to edit files on a sftp server.

Zeus is a GUI based editor and it has no troubles editing files on sftp servers.

link|flag
Stop advertising your shitty editor. – Rayne Dec 23 '08 at 4:42
I tried Zeus and at least for me the SFTP seemed to work just fine. – Blake7 Oct 16 at 13:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.