takaxp / moom

A Moom port to Emacs - Make your dominant hand FREE from your mouse
GNU General Public License v3.0
79 stars 3 forks source link

(setq moom-fill-left t) don't work #27

Closed jjibagar closed 1 year ago

jjibagar commented 1 year ago

I'm trying to get it to start with the option moom-fill-left t but it doesn't work, it doesn't give an error or do anything. However if I use the command with M-x it does work. My code

(when (require 'moom nil t)
  (setq moom-fill-left t)
  (moom-mode 1))
takaxp commented 1 year ago

Well, moom-fill-left is not a variable so the second line of your code do nothing for filling your screen.

jjibagar commented 1 year ago

True, my fault. I have been testing so that the font size does not change with moom-use -font-module-nil and I have managed to get it to work with:

(when (require 'moom nil t)
  (setq moom-use-font-module nil)
  (moom-mode 1))

 (with-eval-after-load "moom"
   (moom-fill-left)
   (moom-mode 1))