You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A possible improvement might be to just list the accepted values:
(defcustomwinum-scope'global"Frames affected by a number set.The accepted values are:'frame-local'visible'global"
Or they could also include explanations, maybe something like this:
(defcustomwinum-scope'global"Frames affected by a number set.The accepted values are:'frame-local window numbers start counting from 1 in each frame: frame 1: 1, 2, ... frame 2: 1, 2, ...'visible window numbers count from the newest frame to the oldest: frame 1: (frame 2 last window) + 1, (frame 2 last window) + 2, ... frame 2: 1, 2, ...'global window numbers count from the oldest frame to the newest: frame 1: 1, 2, ... frame 2: (frame 1 last window) + 1, (frame 1 last window) + 2, ..."
The text was updated successfully, but these errors were encountered:
I noticed that the
winum-scope
variable doesn't show the accepted values in the docstring.emacs-winum/winum.el
Lines 54 to 60 in c5455e8
A possible improvement might be to just list the accepted values:
Or they could also include explanations, maybe something like this:
The text was updated successfully, but these errors were encountered: