回答編集履歴

1

ミスタイプ

2020/09/07 08:42

投稿

pastelkona
pastelkona

スコア31

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  備考:
6
6
 
7
- au BufRead,DufNewFile *.py set &filetype=‘python’
7
+ au BufRead,BufNewFile *.py set &filetype=‘python’
8
8
 
9
9
  とinit.vimに入れるとpython.vim内のecho ‘This is the python’が実行されThis is the pythonと表示される。
10
10
 
@@ -18,22 +18,22 @@
18
18
 
19
19
  また次の文でもエラーに違いはあるものの、 this is pythonが出る。
20
20
 
21
- au BufRead,DufNewFile *.py set &filetype=python
21
+ au BufRead,BufNewFile *.py set &filetype=python
22
22
 
23
- au BufRead,DufNewFile *.py &filetype=python
23
+ au BufRead,BufNewFile *.py &filetype=python
24
24
 
25
25
 
26
26
 
27
27
  次の文ではthis is pythonが出ない。
28
28
 
29
- au BufRead,DufNewFile *.py setfiletype python
29
+ au BufRead,BufNewFile *.py setfiletype python
30
30
 
31
- au BufRead,DufNewFile *.py echo ‘python’
31
+ au BufRead,BufNewFile *.py echo ‘python’
32
32
 
33
33
 
34
34
 
35
35
  とりあえず .pyのときだけして欲しい処理は関数python_configにまとめて
36
36
 
37
- au BufRead,DufNewFile *.py call python_config()
37
+ au BufRead,BufNewFile *.py call python_config()
38
38
 
39
39
  としました。(初めから大人しくそうしてればよかったですね。)