質問編集履歴
1
vimのversionについて追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,3 +7,99 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
と表示されます。なにが原因でしょうか。環境はUbuntu Mateです。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
### 追記
|
14
|
+
|
15
|
+
コマンドライン上で vim --version と入力したときの出力は下のようになっています。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
```ここに言語を入力
|
20
|
+
|
21
|
+
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jun 07 2019 15:35:43)
|
22
|
+
|
23
|
+
Included patches: 1-1689
|
24
|
+
|
25
|
+
Extra patches: 8.0.0056
|
26
|
+
|
27
|
+
Modified by pkg-vim-maintainers@lists.alioth.debian.org
|
28
|
+
|
29
|
+
Compiled by pkg-vim-maintainers@lists.alioth.debian.org
|
30
|
+
|
31
|
+
Huge version without GUI. Features included (+) or not (-):
|
32
|
+
|
33
|
+
+acl +farsi +mouse_netterm +tag_binary
|
34
|
+
|
35
|
+
+arabic +file_in_path +mouse_sgr +tag_old_static
|
36
|
+
|
37
|
+
+autocmd +find_in_path -mouse_sysmouse -tag_any_white
|
38
|
+
|
39
|
+
-balloon_eval +float +mouse_urxvt -tcl
|
40
|
+
|
41
|
+
-browse +folding +mouse_xterm +terminfo
|
42
|
+
|
43
|
+
++builtin_terms -footer +multi_byte +termresponse
|
44
|
+
|
45
|
+
+byte_offset +fork() +multi_lang +textobjects
|
46
|
+
|
47
|
+
+channel +gettext -mzscheme +timers
|
48
|
+
|
49
|
+
+cindent -hangul_input +netbeans_intg +title
|
50
|
+
|
51
|
+
-clientserver +iconv +packages -toolbar
|
52
|
+
|
53
|
+
-clipboard +insert_expand +path_extra +user_commands
|
54
|
+
|
55
|
+
+cmdline_compl +job -perl +vertsplit
|
56
|
+
|
57
|
+
+cmdline_hist +jumplist +persistent_undo +virtualedit
|
58
|
+
|
59
|
+
+cmdline_info +keymap +postscript +visual
|
60
|
+
|
61
|
+
+comments +langmap +printer +visualextra
|
62
|
+
|
63
|
+
+conceal +libcall +profile +viminfo
|
64
|
+
|
65
|
+
+cryptv +linebreak -python +vreplace
|
66
|
+
|
67
|
+
+cscope +lispindent +python3 +wildignore
|
68
|
+
|
69
|
+
+cursorbind +listcmds +quickfix +wildmenu
|
70
|
+
|
71
|
+
+cursorshape +localmap +reltime +windows
|
72
|
+
|
73
|
+
+dialog_con -lua +rightleft +writebackup
|
74
|
+
|
75
|
+
+diff +menu -ruby -X11
|
76
|
+
|
77
|
+
+digraphs +mksession +scrollbind -xfontset
|
78
|
+
|
79
|
+
-dnd +modify_fname +signs -xim
|
80
|
+
|
81
|
+
-ebcdic +mouse +smartindent -xsmp
|
82
|
+
|
83
|
+
+emacs_tags -mouseshape +startuptime -xterm_clipboard
|
84
|
+
|
85
|
+
+eval +mouse_dec +statusline -xterm_save
|
86
|
+
|
87
|
+
+ex_extra +mouse_gpm -sun_workshop -xpm
|
88
|
+
|
89
|
+
+extra_search -mouse_jsbterm +syntax
|
90
|
+
|
91
|
+
system vimrc file: "$VIM/vimrc"
|
92
|
+
|
93
|
+
user vimrc file: "$HOME/.vimrc"
|
94
|
+
|
95
|
+
2nd user vimrc file: "~/.vim/vimrc"
|
96
|
+
|
97
|
+
user exrc file: "$HOME/.exrc"
|
98
|
+
|
99
|
+
fall-back for $VIM: "/usr/share/vim"
|
100
|
+
|
101
|
+
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -Wdate-time -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
|
102
|
+
|
103
|
+
Linking: gcc -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -o vim -lm -ltinfo -lnsl -lselinux -lacl -lattr -lgpm -ldl -L/usr/lib/python3.5/config-3.5m-x86_64-linux-gnu -lpython3.5m -lpthread -ldl -lutil -lm
|
104
|
+
|
105
|
+
```
|