質問編集履歴
1
コードや環境などの詳細を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,3 +19,137 @@
|
|
19
19
|
|
20
20
|
|
21
21
|
ご教授いただければ幸いです.よろしくお願いします.
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
以下追記。
|
26
|
+
|
27
|
+
OSはubuntu 18.4.03、vimは8.0.1453を利用しています。
|
28
|
+
|
29
|
+
変数は単純なpythonのコードで
|
30
|
+
|
31
|
+
```ここに言語を入力
|
32
|
+
|
33
|
+
a=5
|
34
|
+
|
35
|
+
print(a)
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
としたときに、aの中身が表示されるか実験してみたという感じです。
|
40
|
+
|
41
|
+
vimrcはサイトに転がっていたものをコピペしただけで恐縮なのですが、
|
42
|
+
|
43
|
+
次のようになっています
|
44
|
+
|
45
|
+
```ここに言語を入力
|
46
|
+
|
47
|
+
" Note: Skip initialization for vim-tiny or vim-small.
|
48
|
+
|
49
|
+
if 0 | endif
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
filetype off
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
if has('vim_starting')
|
58
|
+
|
59
|
+
if &compatible
|
60
|
+
|
61
|
+
set nocompatible " Be iMproved
|
62
|
+
|
63
|
+
endif
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
set runtimepath+=~/.vim/bundle/neobundle.vim
|
68
|
+
|
69
|
+
endif
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
call neobundle#begin(expand('~/.vim/bundle/'))
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
" originalrepos on github
|
78
|
+
|
79
|
+
NeoBundle 'Shougo/neobundle.vim'
|
80
|
+
|
81
|
+
NeoBundle 'Shougo/vimproc', {
|
82
|
+
|
83
|
+
\ 'build' : {
|
84
|
+
|
85
|
+
\ 'windows' : 'make -f make_mingw32.mak',
|
86
|
+
|
87
|
+
\ 'cygwin' : 'make -f make_cygwin.mak',
|
88
|
+
|
89
|
+
\ 'mac' : 'make -f make_mac.mak',
|
90
|
+
|
91
|
+
\ 'unix' : 'make -f make_unix.mak',
|
92
|
+
|
93
|
+
\ },
|
94
|
+
|
95
|
+
\ }
|
96
|
+
|
97
|
+
NeoBundle 'thinca/vim-prettyprint'
|
98
|
+
|
99
|
+
NeoBundle 'thinca/vim-editvar'
|
100
|
+
|
101
|
+
NeoBundle 'VimClojure'
|
102
|
+
|
103
|
+
NeoBundle 'Shougo/vimshell'
|
104
|
+
|
105
|
+
NeoBundle 'Shougo/unite.vim'
|
106
|
+
|
107
|
+
NeoBundle 'Shougo/neocomplcache'
|
108
|
+
|
109
|
+
NeoBundle 'Shougo/neosnippet'
|
110
|
+
|
111
|
+
NeoBundle 'jpalardy/vim-slime'
|
112
|
+
|
113
|
+
NeoBundle 'scrooloose/syntastic'
|
114
|
+
|
115
|
+
NeoBundle 'Shougo/vimfiler.vim'
|
116
|
+
|
117
|
+
NeoBundle 'itchyny/lightline.vim'
|
118
|
+
|
119
|
+
NeoBundle 't9md/vim-textmanip'
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
NeoBundle 'Shougo/unite.vim'
|
124
|
+
|
125
|
+
NeoBundle 'ujihisa/unite-colorscheme'
|
126
|
+
|
127
|
+
NeoBundle 'tomasr/molokai'
|
128
|
+
|
129
|
+
""NeoBundle 'https://bitbucket.org/kovisoft/slimv'
|
130
|
+
|
131
|
+
call neobundle#end()
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
filetype plugin indent on " required!
|
136
|
+
|
137
|
+
filetype indent on
|
138
|
+
|
139
|
+
syntax on
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
NeoBundleCheck
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
実行までの手順はvim test.pyによりpythonファイルを編集したあと、python3 test.pyで実行、その後にコマンド:Editvar aを入力という手順です。
|
150
|
+
|
151
|
+
Editvar: a を実行したときのスクショを添付します。
|
152
|
+
|
153
|
+
以上です。よろしくお願いします。
|
154
|
+
|
155
|
+
![イメージ説明](5969e465f0f45931aee7af07b6150bc2.png)
|