this post was submitted on 11 Feb 2024
37 points (91.1% liked)

Linux

47300 readers
519 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I do a lot of text editing for work and there are some phrases that I have to type frequently. What's the best way to quickly paste those phrases into a document using a shortcut or keyword? I mainly use Kwrite and Kate as i prefer plain text editors and need no formatting.

you are viewing a single comment's thread
view the rest of the comments
[–] mrh@mander.xyz 8 points 7 months ago* (last edited 7 months ago) (3 children)

If I understand you correctly, this is trivial in emacs:

(defun insert-text ()
  (interactive)
  (insert "your text here"))

(global-set-key your-keybind-here #'insert-text)

You could make it a format string if it relies on data specific to some file or parameter. You could also make the keybind local to certain modes/files rather than a global keybind if you don't want to pollute your keybind space.

[–] Zak@lemmy.world 11 points 7 months ago (1 children)

Emacs has several templating/snippet packages available, such as YASnippet.

[–] Octorine@midwest.social 4 points 7 months ago

There's a built in snippet system too, called skeletons, but most people seem to prefer the yasnippet interface.

load more comments (1 replies)