Klimi's new dotfiles with stow.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

66 Zeilen
1.8 KiB

vor 4 Jahren
  1. ;;; csharp-mode-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "csharp-mode" "csharp-mode.el" (0 0 0 0))
  7. ;;; Generated autoloads from csharp-mode.el
  8. (add-to-list 'auto-mode-alist '("\\.cs$" . csharp-mode))
  9. (autoload 'csharp-mode "csharp-mode" "\
  10. Major mode for editing C# code.
  11. The mode provides fontification and indent for C# syntax, as well
  12. as some other handy features.
  13. At mode startup, there are two interesting hooks that run:
  14. `prog-mode-hook' is run with no args, then `csharp-mode-hook' is run after
  15. that, also with no args.
  16. To run your own logic after csharp-mode starts, do this:
  17. (defun my-csharp-mode-fn ()
  18. \"my function that runs when csharp-mode is initialized for a buffer.\"
  19. (turn-on-font-lock)
  20. (turn-on-auto-revert-mode) ;; helpful when also using Visual Studio
  21. (setq indent-tabs-mode nil) ;; tabs are evil
  22. ....your own code here...
  23. )
  24. (add-hook 'csharp-mode-hook 'my-csharp-mode-fn t)
  25. The function above is just a suggestion.
  26. Imenu Integration
  27. ===============================
  28. Check the menubar for menu entries for Imenu; it is labelled
  29. \"Index\".
  30. The Imenu index gets computed when the file is .cs first opened and loaded.
  31. This may take a moment or two. If you don't like this delay and don't
  32. use Imenu, you can turn this off with the variable `csharp-want-imenu'.
  33. Key bindings:
  34. \\{csharp-mode-map}
  35. \(fn)" t nil)
  36. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "csharp-mode" '("csharp-")))
  37. ;;;***
  38. ;; Local Variables:
  39. ;; version-control: never
  40. ;; no-byte-compile: t
  41. ;; no-update-autoloads: t
  42. ;; coding: utf-8
  43. ;; End:
  44. ;;; csharp-mode-autoloads.el ends here