Mine is using the arrow keys to navigate typed text while writing and editing. It helps speed things up, versus having to move your hand to the mouse to navigate.

Use the Up and Down Arrows to move/jump vertically.

Left and Right Arrows to move/jump horizontally.

Combine Left or Right Arrow with Shift to be able to select text. Use Up or Down Arrow with Shift to quickly select whole/nearly whole sections of text.

Combine Control with Left/Right Arrow to jump whole words to more quickly move to where you want to type.

  • @[email protected]
    link
    fedilink
    1
    edit-2
    15 minutes ago

    Cutting and pasting a folder is faster than copying and pasting.
    OS just gotta add an inode in first case.

  • Krudler
    link
    fedilink
    English
    11 hour ago

    First thing required on every new keyboard

  • @[email protected]
    link
    fedilink
    12 hours ago

    Linux. Windows is used for Russian oligarchs.

    Since people are expecting windows shortcut keys, I nominate TAB navigation. Hitting tab will cycle the focus through all the buttons and edit boxes. Shift Tab to go backwards.

  • @[email protected]
    link
    fedilink
    10
    edit-2
    6 hours ago

    Are you serious? arrow keys instead of clicking? let’s take it further:

    shift+arrow highlights letters
    ctrl+arrow skips entire words
    ctrl+shift+arrow highlights entire words
    home/end jumps to start/end of line
    ctrl+home/end jumps to start/end of text box
    ctrl+shift+home/end jumps to start/end of textbox and highlights it
    um, do you need me to explain what ctrl+xcv do? or ctrl+zy? or ctrl+asdwerfgop?

    isn’t this just basic typing? didnt yall learn this in the 90s??? how are you all on the internet right now

    wait til you hear about how i swipe texted all this

  • @[email protected]
    link
    fedilink
    14 hours ago

    (Linux)

    Add the same symbol at the beginning of most aliases. I use é

    So when I type é+tab I get all my aliases

    é+first letters of alias+tab and I’m sure autocomplete will select the alias and not another command

  • @[email protected]
    link
    fedilink
    68 hours ago

    Wait until you learn about vim keybindings. Instead of moving your hand to the arrow keys, you can stay on the homerow and movie up down left right from there.

  • @[email protected]
    link
    fedilink
    English
    8
    edit-2
    10 hours ago

    Far from most used, but very handy: ctrl+win+shift+b

    It restarts the graphic subsystem, which can help recover from situations where game crashes or similar cause visual issues.

  • Raltoid
    link
    fedilink
    English
    2
    edit-2
    10 hours ago
    • Double clicking with the mouse on a word usually selects the whole word with the space after, very nice for copy-pasting.

    • Double clicking on the selected word will sometimes select the whole line(In some applications it actually selects up to the newline marker, so it will grab multiple lines if resized smaller).

    • @[email protected]
      link
      fedilink
      46 hours ago

      I’m kinda mind blown that this is even considered a tip. isn’t this just basic functionality of a text box???

      it’s shit like this that makes me think I do know tech a little bit, until i stumble on an actual tech community and feel like I know nothing

      • @[email protected]
        link
        fedilink
        English
        1
        edit-2
        4 hours ago

        For real, I remember when Solitaire was added to Windows to teach people how to use a mouse. It wasn’t just some fun little thing they added on a whim. The goal was to provide an entertaining way for users to naturally learn mouse controls like clicking and dragging.

        Before then, you had to use the keyboard to navigate text, because you literally didn’t have a mouse.

  • @[email protected]
    link
    fedilink
    312 hours ago

    Control Backspace deletes whole words. Misspelled control? Faster to delete and retype than move my cursor around when I’m on a roll.

  • @[email protected]
    link
    fedilink
    261 day ago

    To navigate to the previous folder

    cd -

    To reissue the previous command with a prefix. For example:

    cat /root/.ssh/authorized_keys # Will fail without privilege

    sudo !!

    To use the argument of the previous command. For example:

    tac ~/.ssh/authorized_keys # oops, misspelled cat

    cat !$

    • Luc
      link
      fedilink
      12 hours ago

      Not sure if you’re aware that tac is not a typo but reverse cat, as in, it works like cat but prints the last line first. I use this semi-regularly

      sl, now, that’s a typo. Nobody wants a free choo choo

  • @[email protected]
    link
    fedilink
    4
    edit-2
    20 hours ago

    My main one is to learn shortcuts on your most used programs. Using the mouse for everything is a waste of time, but that has been said multiple times.

    My second is to create scripts to do a bunch of repetitive tasks. For example, I have a script I run on my work PC after I log on to the VPN that starts my “always on” programs (like notepad++), unlocks the hosts file, etc. I have some sendto scripts for converting files with pandoc, fetching multiple git repos in one go, etc. It just speeds up things and avoids errors versus me doing them manually.

    On Windows I use PowerShell and on Linux I use bash, meaning they work without additional software installed.