diff options
author | Kyle Meyer <kyle@kyleam.com> | 2013-12-08 21:18:50 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2013-12-08 22:48:33 -0500 |
commit | ea7f64a0bcfab0db4c7c33dd94f5cc0ae2741c4f (patch) | |
tree | 211defc9ce1d5dbe17a9e831d4840a236b88e2d7 | |
parent | ac8f32be4e0cc02fd1c240ef85164eeafde3c3f6 (diff) | |
download | emacs.d-ea7f64a0bcfab0db4c7c33dd94f5cc0ae2741c4f.tar.gz |
Change key for python shebang snippet
Key used to be '#!', but on update giving error:
[yas] elisp error! Symbol's function definition is void: ca-all-asscs
This is coming from the text-mode/bang snippet with the key "!".
`ca-all-asscs' is defined in Andrea Crotti's snippet repo:
https://github.com/AndreaCrotti/Emacs-configuration/blob/01ac040840ceba0a909317046e8a83867aea1022/modules/ca-utils.el#466-473
Changing key for python snippet to 'sb' to avoid conflict.
-rw-r--r-- | snippets/python-mode/shebang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snippets/python-mode/shebang b/snippets/python-mode/shebang index 26da506..1506808 100644 --- a/snippets/python-mode/shebang +++ b/snippets/python-mode/shebang @@ -1,5 +1,5 @@ # name: python shebang -# key: #! +# key: sb # -- #!/usr/bin/env python${1:3} $0 |