Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide lines #236

Merged
merged 3 commits into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 16 additions & 27 deletions init.org
Original file line number Diff line number Diff line change
Expand Up @@ -288,14 +288,6 @@ Library to quickly define backends for =flymake=.
(use-package flymake-quickdef :ensure t :commands (flymake-quickdef-backend))
#+end_src

*** hide-lines
Library to hide lines based on a regular expressions.
#+begin_src emacs-lisp :tangle yes
(use-package hide-lines
:ensure t
:commands (hide-lines-matching))
#+end_src

*** quick-peek
Library to display inline popups; used by ~source-peek~.
#+begin_src emacs-lisp :tangle yes
Expand Down Expand Up @@ -906,7 +898,7 @@ Display available keybindings in a popup as you press keys.
:prefix window-prefix
"d" 'toggle-dedicated-window
"m" 'maximize-window
"s" 'window-configuration-to-register
"r" 'window-configuration-to-register
"w" 'window-toggle-side-windows)
#+end_src

Expand Down Expand Up @@ -984,8 +976,6 @@ Display available keybindings in a popup as you press keys.
:prefix leader-key
"m" 'gnus
"p" 'list-processes
"s" 'screenshot-svg
"S" 'screenshot-png
"x" 'regexp-builder
"w" 'eww)
#+end_src
Expand Down Expand Up @@ -1548,9 +1538,7 @@ Making invisible text temporarily visible.
#+begin_src emacs-lisp :tangle yes
(use-package simple
:general
(:prefix
leader-key
"v" 'visible-mode))
(:prefix leader-key "v" 'visible-mode))
#+end_src

*** Tables
Expand Down Expand Up @@ -1638,10 +1626,7 @@ Track minibuffer history
:ensure t
:general
(:keymaps
'(minibuffer-local-map
minibuffer-local-ns-map
minibuffer-local-completion-map
minibuffer-local-must-match-map)
'minibuffer-local-map
"C-." 'embark-act
"C-;" 'embark-dwim))

Expand All @@ -1655,10 +1640,7 @@ Edit minibuffer in a new temporary buffer by pressing =C-c '=.
:ensure t
:general
(:keymaps
'(minibuffer-local-map
minibuffer-local-ns-map
minibuffer-local-completion-map
minibuffer-local-must-match-map)
'minibuffer-local-map
"C-c '" 'miniedit)
:init
(setq miniedit-show-help-p nil))
Expand Down Expand Up @@ -1697,6 +1679,17 @@ Revert buffers when underlying files change.
(after-init-hook . global-eldoc-mode))
#+end_src

*** hide-lines
Hide lines in buffer based on a regular expressions.
#+begin_src emacs-lisp :tangle yes
(use-package hide-lines
:ensure t
:commands
(hide-lines-matching)
:general
(:prefix search-prefix "H" 'hide-lines))
#+end_src

*** pairable
#+begin_src emacs-lisp :tangle yes
(use-package pairable :ensure t)
Expand Down Expand Up @@ -1845,10 +1838,6 @@ Striped dired buffers.
** Occur
#+begin_src emacs-lisp :tangle yes
(use-package replace
:general
(:prefix
search-prefix
"o" 'occur)
(:keymaps
'occur-mode-map
"C-c '" 'occur-edit-mode))
Expand Down Expand Up @@ -2377,7 +2366,6 @@ Haskell one).
"p" 'flymake-diagnostics-prev-error
"j" 'flymake-diagnostics-next-error
"k" 'flymake-diagnostics-prev-error
"RET" 'flymake-goto-diagnostic
"TAB" 'flymake-show-diagnostic))

(use-package flymake-proc
Expand Down Expand Up @@ -4625,3 +4613,4 @@ Packages that I am currently testing or evaluating.
** TODO Flymake + Elsa
** TODO Add minions menu to ~mode-line-major-mode-keymap~ (=S-mouse-3=)
** TODO Evaluate skeleton
** TODO Evaluate [[https://github.com/alphapapa/obvious.el][obvious.el]]