diff --git a/README.md b/README.md index 16ff2b18..5140c67a 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,10 @@ to setup keybindings for `csharp-mode`. (setq tab-width 4) (setq evil-shift-width 4) + ;csharp-mode README.md recommends this too + ;(electric-pair-mode 1) ;; Emacs 24 + ;(electric-pair-local-mode 1) ;; Emacs 25 + (local-set-key (kbd "C-c r r") 'omnisharp-run-code-action-refactoring) (local-set-key (kbd "C-c C-c") 'recompile)) diff --git a/omnisharp.el b/omnisharp.el index 95e1a32e..beb2e90a 100644 --- a/omnisharp.el +++ b/omnisharp.el @@ -1,8 +1,8 @@ ;;; omnisharp.el --- Omnicompletion (intellisense) and more for C# -*- lexical-binding: t; -*- -;; Copyright (C) 2013-2017 Mika Vilpas and others (GPLv3) +;; Copyright (C) 2013-2018 Mika Vilpas and others (GPLv3) ;; Author: Mika Vilpas and others -;; Version: 4.1 +;; Version: 4.2 ;; License: GNU General Public License version 3, or (at your option) any later version ;; Url: https://github.com/Omnisharp/omnisharp-emacs ;; Package-Requires: ((emacs "24.4") (flycheck "30") (dash "2.12.0") (auto-complete "1.4") (popup "0.5.1") (csharp-mode "0.8.7") (cl-lib "0.5") (s "1.10.0") (shut-up "0.3.2") (f "0.19.0"))