vim-tiny에는 어떤 기능이 있습니까? 명령이 작동하지 않습니다. 지금까지 내가 발견 한

따라서 컷 다운 vim-tiny은 기본적으로 우분투에 설치됩니다. 나는 그것을 사용하지 않지만 문서를 찾을 수 없으며 일반적인 Vim에서 사용했던 대부분의 명령이 작동하지 않습니다. 지금까지 내가 발견 한 :n:N버퍼 사이에 이동 :split분할 화면 (하지만 CtrlW+ S하지 않습니다), :close분할을 닫고, CtrlW+ 것은 W분할 사이 홉.

다른 명령이 누락 되었습니까?



답변

11.10에 :

$ vim.tiny --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Oct  6 2011 10:32:12)
Included patches: 1-154
Modified by pkg-vim-maintainers@lists.alioth.debian.org
Compiled by buildd@
Small version without GUI.  Features included (+) or not (-):
-arabic -autocmd -balloon_eval -browse +builtin_terms -byte_offset -cindent
-clientserver -clipboard -cmdline_compl +cmdline_hist -cmdline_info -comments
-conceal -cryptv -cscope -cursorbind -cursorshape -dialog -diff -digraphs -dnd
-ebcdic -emacs_tags -eval -ex_extra -extra_search -farsi -file_in_path
-find_in_path -float -folding -footer +fork() -gettext -hangul_input +iconv
-insert_expand +jumplist -keymap -langmap -libcall -linebreak -lispindent
-listcmds -localmap -lua -menu -mksession -modify_fname -mouse -mouse_dec
-mouse_gpm -mouse_jsbterm -mouse_netterm -mouse_sysmouse -mouse_xterm
+multi_byte -multi_lang -mzscheme -netbeans_intg -osfiletype -path_extra -perl
-persistent_undo -printer -profile -python -python3 -quickfix -reltime
-rightleft -ruby -scrollbind -signs -smartindent -sniff -startuptime
-statusline -sun_workshop -syntax -tag_binary -tag_old_static -tag_any_white
-tcl +terminfo -termresponse -textobjects -title -toolbar -user_commands
-vertsplit -virtualedit +visual -visualextra -viminfo -vreplace +wildignore
-wildmenu +windows +writebackup -X11 +xfontset -xim -xsmp -xterm_clipboard
-xterm_save
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H     -Wall -g -O2 -DTINY_VIMRC -D_FORTIFY_SOURCE=1
Linking: gcc   -Wl,-Bsymbolic-functions -Wl,--as-needed -o vim    -lSM -lICE -lXpm -lXt -lX11 -lXdmcp -lSM -lICE -lm -ltinfo  -lselinux -ldl

사용 가능한 기능은 12 가지뿐입니다 (1 백 20 개 중).

+builtin_terms      Some terminals supported
+cmdline_hist       Command line history
+fork()             Shell commands are forked
+iconv              Extra encoding conversions besides utf8<->latin1
+jumplist           jumplist history,
                    So you can go back/forward with Ctrl-O/Ctrl-I
+multi_byte         Multibyte characters
+terminfo           Use terminfo instead of termcap
+visual             Visual mode supported (but no blockwise visual mode)
+wildignore         Allow wildcard patterns, to specify files to
                    ignore during filename completion
+windows            Support more than one buffer window
+writebackup        Backup files before overwriting (this either
                    provides this option, or defaults it to on)
+xfontset           X fontset support

설명은 @Caesium이 게시 한 기능 목록 링크를 기반으로합니다 .

vi 호환 모드 에서 vim을 실행하고 있기 때문에 누락 된 키 바인딩 등이있을 수 있습니다. vim에서 수행 :set nocompatible하거나 파일에 추가 set nocompatible하여 해당 키를 끌 수 .vimrc있습니다.

나는 시도 Ctrl-W s하고 /usr/bin/vim.tiny호환 모드에서 실행 하는 동안 나에게 분할을 했으므로 문제가되지 않을 수 있습니다. 그러나 그 경우 어떤 일이 일어날 지 잘 모르겠습니다. 어쩌면 .vimrc파일에 작동을 멈출 만한 것이 없는지 확인하십시오 .


답변

여기 당신은 간다 :
http://vimdoc.sourceforge.net/htmldoc/various.html#+feature-list

에서 인용 : ve [rsion] ..

The first column shows the smallest version in which they are included:
T   tiny
S   small
N   normal
B   big
H   huge

나는 실제로 ‘T’라고 표시되어 있지 않으므로 아무것도 얻지 못하는 것처럼 보입니다. “아마도 vi에 관한 것”이라는 다른 대답은 그리 멀지 않을 것입니다.)


답변