doomemacs/modules/lang
Henrik Lissner c7254e7bdc
Major optimization refactor, across the board
+ enable lexical-scope everywhere (lexical-binding = t): ~5-10% faster
  startup; ~5-20% general boost
+ reduce consing, function calls & garbage collection by preferring
  cl-loop & dolist over lambda closures (for mapc[ar], add-hook, and
  various cl-lib filter/map/reduce functions) -- where possible
+ prefer functions with dedicated opcodes, like assq (see byte-defop's
  in bytecomp.el for more)
+ prefer pcase & cond (faster) over cl-case
+ general refactor for code readability
+ ensure naming & style conventions are adhered to
+ appease byte-compiler by marking unused variables with underscore
+ defer minor mode activation to after-init, emacs-startup or
  window-setup hooks; a customization opportunity for users + ensures
  custom functionality won't interfere with startup.
2017-06-09 00:47:45 +02:00
..
assembly Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
cc Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
clojure Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
crystal Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
csharp Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
data Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
elixir Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
elm Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
emacs-lisp Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
go Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
haskell Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
java Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
javascript Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
julia Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
latex Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
lua Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
markdown Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
org Fix void-variable recentf-exclude 2017-06-05 16:56:13 +02:00
php Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
purescript Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
python Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
rest Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
ruby Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
rust Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
scala Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
sh Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
swift Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
typescript Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00
web Major optimization refactor, across the board 2017-06-09 00:47:45 +02:00