feat: Various completion additions

- Add `vertico-mode` keybindings.
- Unmap `C-k` in insert state.
This commit is contained in:
Madeleine Sydney
2025-01-12 18:34:20 -07:00
parent 7683acd80a
commit d3fbc8442b
4 changed files with 64 additions and 1 deletions

35
lib/syd-search.el Normal file
View File

@@ -0,0 +1,35 @@
;;; syd-search.el --- Description -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2025 Madeleine Sydney
;;
;; Author: Madeleine Sydney <lomiskiam@gmail.com>
;; Maintainer: Madeleine Sydney <lomiskiam@gmail.com>
;; Created: January 12, 2025
;; Modified: January 12, 2025
;; Version: 0.0.1
;; Keywords: abbrev bib c calendar comm convenience data docs emulations extensions faces files frames games hardware help hypermedia i18n internal languages lisp local maint mail matching mouse multimedia news outlines processes terminals tex text tools unix vc
;; Homepage: https://github.com/crumb/syd-search
;; Package-Requires: ((emacs "24.3"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; Description
;;
;;; Code:
(syd-define-stub
syd/search-buffer
"Conduct a text search on the current buffer.
If a selection is active and multi-line, perform a search restricted to that
region.
If a selection is active and not multi-line, use the selection as the initial
input and search the whole buffer for it.
See `+default/search-buffer'.")
(provide 'syd-search)
;;; syd-search.el ends here