ch11ng / exwm

Emacs X Window Manager
2.85k stars 134 forks source link

Where is the keybinding [s-return] defined? #799

Open faaafo opened 3 years ago

faaafo commented 3 years ago

In my case it opens xterm in fullsize. Now I'd like to change it (ansi term half size). However I'm not able to find the appropriate config file.

Even tried ripgrepping my homefolder rg "\[s-return\]" --hidden ...nothing

Where does the default value come from?

Did I miss something in from the wiki keybindings section? https://github.com/ch11ng/exwm/wiki#global-key-bindings

minikN commented 3 years ago

I don't think s-return is bound by default. You probably have defined it somewhere and forgot about it? That being said, I use s-return in my main config file for exwm like so:

  (setq exwm-input-global-keys
        `(
          ;; ......
          ;; Launch terminal
          ([s-return] . ansi-term)
          ;; .......
))