diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-08-27 17:28:46 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-08-27 17:29:28 +0100 |
commit | 9be682d61eddc24129d311e66fdac73697664c22 (patch) | |
tree | d32ff706ecb37c106aeecd2f58e83be6b38e3fa0 | |
parent | f0c6ede1418dd0c55b816eab8c4352b761b90fb8 (diff) | |
download | dotfiles-9be682d61eddc24129d311e66fdac73697664c22.tar.gz dotfiles-9be682d61eddc24129d311e66fdac73697664c22.tar.bz2 dotfiles-9be682d61eddc24129d311e66fdac73697664c22.zip |
~csharp keybinds
Most tests are done by omnisharp functions. I have no need to use custom
functions anymore. Just this one for global test search and deploy
-rw-r--r-- | doom.d/config.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index 8fd49a8..7b8669f 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -257,11 +257,12 @@ My docsets are stored in .docsets for ease of use (map! ; CSharp Keybinds :map csharp-mode-map :localleader - :desc "Format buffer" "=" 'omnisharp-code-format-entire-file + :desc "Format buffer" "=" 'omnisharp-code-format-entire-file (:prefix "t" - :desc "Test prompt" "t" 'oreodave/csharp/unit-test + :desc "Select Test in Project" "t" 'oreodave/csharp/get-unit-test-in-project ))) #+END_SRC + - I have custom installed the omnisharp roslyn executable, so I'd rather use that - C# code is better at 4 space indents, but I indent most of my C code at 2 space indents because it looks nicer :) - Currently the Doom Emacs keybinds are not working for C# Unit-tests so I had to do them myself |