bind! -> map!; new minimalistic keybinding macro
This commit is contained in:
parent
2e4a083bbb
commit
81df2830a9
19 changed files with 431 additions and 441 deletions
|
@ -18,11 +18,12 @@
|
|||
:init
|
||||
(add-hook! csharp-mode '(emr-initialize omnisharp-mode))
|
||||
:config
|
||||
(evil-define-key 'normal omnisharp-mode-map
|
||||
(kbd "gd") 'omnisharp-go-to-definition
|
||||
(kbd ",tr") (λ (omnisharp-unit-test "fixture"))
|
||||
(kbd ",ts") (λ (omnisharp-unit-test "single"))
|
||||
(kbd ",ta") (λ (omnisharp-unit-test "all")))
|
||||
(map! :map omnisharp-mode-map
|
||||
"gd" 'omnisharp-go-to-definition
|
||||
(:prefix "\\"
|
||||
"tr" (λ (omnisharp-unit-test "fixture"))
|
||||
"ts" (λ (omnisharp-unit-test "single"))
|
||||
"ta" (λ (omnisharp-unit-test "all"))))
|
||||
|
||||
(after! company
|
||||
(define-company-backend! csharp-mode (omnisharp))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue