Add auto-insert template for .proj files
This commit is contained in:
parent
99a4c23dab
commit
2e672668d9
1 changed files with 6 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||
;; Keywords: local
|
||||
;; Version: 2020.0714.095918
|
||||
;; Version: 2020.0825.163721
|
||||
;; Package-Requires: (csharp-mode oni-company oni-flycheck oni-yasnippet oni-hydra oni-fci oni-lsp smartparens)
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
|
@ -166,6 +166,11 @@ _cs_: Solution
|
|||
;;;###autoload
|
||||
(add-to-list 'auto-mode-alist '("\\.csproj\\'" . nxml-mode))
|
||||
|
||||
(add-to-list 'auto-insert-alist
|
||||
`(,(rx ".proj" string-end)
|
||||
nil
|
||||
"<Project xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\" ToolsVersion=\"4.0\">\n " _ "\n</Project>"))
|
||||
|
||||
;;;###autoload
|
||||
(with-eval-after-load 'csharp-mode
|
||||
(with-eval-after-load 'yasnippet
|
||||
|
|
Loading…
Reference in a new issue