Страница 1 из 1

1 нах :)

Добавлено: 2006-10-12 21:05:22
100kg
вот решил по кодить на сишке в бзде :))
какой редактор для gcc посоветуите? сразу гворю всё что касаеься с иксами не катит! ах да умнечать не надо типо в редакторе vi :) !! mcedit lissyara предложит! :)
мне надо что-то наподобе TC :)))

Добавлено: 2006-10-12 21:07:02
Alex Keda
нет. я предложу vim. Это недалеко от vi - но местами удобней чем mc.
а вообще -

Код: Выделить всё

cd /usr/ports/editors

Добавлено: 2006-11-15 23:01:24
Fastman
емасs думаю лучше всего подходит... хотя настроить его по началу - мучение.

Добавлено: 2006-11-22 14:55:25
Ivan T. Duhnitsky
я предпочитаю vim, но если надо на подобии TC то тогда motor (/usr/ports/devel/motor)
или http://www.acadix.com/apemain.html

Re:

Добавлено: 2007-10-29 19:27:08
100kg
lissyara писал(а):нет. я предложу vim. Это недалеко от vi - но местами удобней чем mc.
а вообще -

Код: Выделить всё

cd /usr/ports/editors
не могу привыкнуть к vim :| пипец все его так продвигают, чем он так хорош?, пользуюсь редактором ее, все просто и легко и быстро

Re: 1 нах :)

Добавлено: 2007-10-30 1:39:59
Alex Keda
а ты vimrc - правильный юзаешь?
=========
привыкнуть - тяжело. я принципиально сдела альяс с ee на vim - чтоб привыкнуть.
зато когда привыкнешь - всё эти ee - кажутся ужасом.

Re: 1 нах :)

Добавлено: 2007-11-03 15:56:13
100kg
а я не знаю! а как проверить?

Re: 1 нах :)

Добавлено: 2007-11-03 20:00:37
Alex Keda

Код: Выделить всё

more /root/.vimrc

" Normally we use vim-extensions. If you want true vi-compatibility
" remove change the following statements
set nocompatible        " Use Vim defaults instead of 100% vi compatibility
set backspace=indent,eol,start  " more powerful backspacing

" Now we set some defaults for the editor
set autoindent          " always set autoindenting on
" set linebreak         " Don't wrap words by default
set textwidth=0         " Don't wrap lines by default
set viminfo='20,\"50    " read/write a .viminfo file, don't store more than
                        " 50 lines of registers
set history=50          " keep 50 lines of command line history
set ruler               " show the cursor position all the time

" Suffixes that get lower priority when doing tab completion for filenames.
" These are files we are not likely to want to edit or read.
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc

" We know xterm-debian is a color terminal
if &term =~ "xterm-debian" || &term =~ "xterm-xfree86"
  set t_Co=16
  set t_Sf=ESC[3%dm
  set t_Sb=ESC[4%dm
endif

" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
" syntax on

" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
" set background=dark

if has("autocmd")
 " Enabled file type detection
 " Use the default filetype settings. If you also want to load indent files
 " to automatically do language-dependent indenting add 'indent' as well.
 filetype plugin on

endif " has ("autocmd")

" Some Debian-specific things
if has("autocmd")
  augroup filetype
    au BufRead reportbug.*              set ft=mail
    au BufRead reportbug-*              set ft=mail
  augroup END
endif

" Uncomment the following to have Vim jump to the last position when
" reopening a file
" if has("autocmd")
"   au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
"                    \| exe normal g'\"" | endif
" endif

" Set paper size from /etc/papersize if available (Debian-specific)
if filereadable("/etc/papersize")
  try
    let s:shellbak = &shell
    let &shell="/bin/sh"
    let s:papersize = matchstr(system("cat /etc/papersize"), "\\p*")
    let &shell=s:shellbak
    if strlen(s:papersize)
      let &printoptions = "paper:" . s:papersize
    endif
  catch /^Vim\%((\a\+)\)\=:E145/
  endtry
endif

" The following are commented out as they cause vim to behave a lot
" different from regular vi. They are highly recommended though.
"set showcmd            " Show (partial) command in status line.
"set showmatch          " Show matching brackets.
"set ignorecase         " Do case insensitive matching
"set incsearch          " Incremental search
"set autowrite          " Automatically save before commands like :next and :make

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif
syntax on
стырено с какого-то дебилиана и мальца подрихтовано