Add snippets to oni-csharp
This commit is contained in:
parent
f082706a20
commit
68e796fb7c
5 changed files with 59 additions and 3 deletions
|
@ -117,6 +117,16 @@ package-oni-twig:
|
|||
paths:
|
||||
- oni-twig/dist/
|
||||
|
||||
package-oni-csharp:
|
||||
stage: pre-package-multifile
|
||||
before_script:
|
||||
- rm -rf oni-csharp/dist
|
||||
script:
|
||||
- cask --path oni-csharp package
|
||||
artifacts:
|
||||
paths:
|
||||
- oni-csharp/dist/
|
||||
|
||||
package:
|
||||
stage: package
|
||||
dependencies:
|
||||
|
@ -131,6 +141,7 @@ package:
|
|||
- package-oni-python
|
||||
- package-oni-ruby
|
||||
- package-oni-twig
|
||||
- package-oni-csharp
|
||||
before_script:
|
||||
- rm -rf bin/
|
||||
- mkdir bin/
|
||||
|
|
|
@ -16,7 +16,8 @@ endef
|
|||
|
||||
package: $(PACKAGE_TARGETS) package-oni-conf package-oni-css package-oni-elisp \
|
||||
package-oni-haml package-oni-html package-oni-nxml package-oni-org \
|
||||
package-oni-php package-oni-python package-oni-ruby package-oni-twig
|
||||
package-oni-php package-oni-python package-oni-ruby package-oni-twig \
|
||||
package-oni-csharp
|
||||
|
||||
package-%: %
|
||||
$(call upload,\"$^\")
|
||||
|
@ -54,6 +55,9 @@ package-oni-ruby:
|
|||
package-oni-twig:
|
||||
$(call upload-multi-file,oni-twig)
|
||||
|
||||
package-oni-csharp:
|
||||
$(call upload-multi-file,oni-csharp)
|
||||
|
||||
install-%:
|
||||
emacs --batch \
|
||||
--load oni-package.el \
|
||||
|
|
10
oni-csharp/Cask
Normal file
10
oni-csharp/Cask
Normal file
|
@ -0,0 +1,10 @@
|
|||
(source gnu)
|
||||
(source melpa)
|
||||
|
||||
(package-file "./oni-csharp.el")
|
||||
|
||||
(depends-on "oni-yasnippet" :git "../" :files ("oni-yasnippet.el"))
|
||||
|
||||
(files
|
||||
"*.el"
|
||||
("snippets" "./snippets/*"))
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||
;; Keywords: local
|
||||
;; Version: 2020.0302.100628
|
||||
;; Package-Requires: (csharp-mode omnisharp oni-company oni-flycheck smartparens)
|
||||
;; Version: 2020.0302.175435
|
||||
;; Package-Requires: (csharp-mode omnisharp oni-company oni-flycheck oni-yasnippet smartparens)
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
|
@ -27,6 +27,17 @@
|
|||
;;; Code:
|
||||
|
||||
(require 'csharp-mode)
|
||||
(require 'yasnippet)
|
||||
|
||||
(defconst oni-csharp-root
|
||||
(file-name-directory
|
||||
(or load-file-name
|
||||
(buffer-file-name)))
|
||||
"The directory where ‘oni-csharp’ was loaded from.")
|
||||
|
||||
(defconst oni-csharp-snippets-dir
|
||||
(expand-file-name "snippets" oni-csharp-root)
|
||||
"The directory where ‘oni-csharp’ stores its snippets.")
|
||||
|
||||
(defvar oni-csharp--projects (make-hash-table :test 'equal))
|
||||
|
||||
|
@ -83,6 +94,12 @@
|
|||
(setq-local comment-auto-fill-only-comments t)
|
||||
(auto-fill-mode))
|
||||
|
||||
(defun oni-csharp-snippets-initialize ()
|
||||
"Initialize the snippets for ‘oni-csharp’."
|
||||
(when (boundp 'yas-snippet-dirs)
|
||||
(add-to-list 'yas-snippet-dirs oni-csharp-snippets-dir t))
|
||||
(yas-load-directory oni-csharp-snippets-dir))
|
||||
|
||||
(with-eval-after-load 'company
|
||||
(add-to-list 'company-backends
|
||||
'(company-omnisharp :with company-yasnippet)))
|
||||
|
@ -105,6 +122,11 @@
|
|||
;;;###autoload
|
||||
(add-to-list 'auto-mode-alist '("\\.csproj\\'" . nxml-mode))
|
||||
|
||||
;;;###autoload
|
||||
(with-eval-after-load 'csharp-mode
|
||||
(with-eval-after-load 'yasnippet
|
||||
(oni-csharp-snippets-initialize)))
|
||||
|
||||
;;;###autoload(with-eval-after-load 'csharp-mode (require 'oni-csharp))
|
||||
|
||||
(provide 'oni-csharp)
|
9
oni-csharp/snippets/csharp-mode/testm
Normal file
9
oni-csharp/snippets/csharp-mode/testm
Normal file
|
@ -0,0 +1,9 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: Test Method
|
||||
# key: testm
|
||||
# --
|
||||
[TestMethod]
|
||||
public void ${1:TestMethod}()
|
||||
{
|
||||
$0
|
||||
}
|
Loading…
Reference in a new issue