You might find your answer to tech related issues here!

How to start Sublime Text from CLI on Mac

So, you'd like a terminal shortcut to open a file in Sublime Text? Easy! Open a terminal and run the following commands to set it up: sudo touch /usr/local/bin/subl sudo chown 0:0 /usr/local/bin/subl sudo chmod +x /usr/local/bin/subl echo '/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl "$@"' | sudo tee /usr/local/bin/subl Cool! We're done! Now, to [...]

By |2022-01-14T19:39:28+01:00January 14th, 2022|Guide, Tech Support|0 Comments

macOS Fix Zsh auto-completion and get more

Apple has delivered auto-completions for Zsh with the OS, but they seem to not be used... The Fix Edit ~/.zshrc with your favourite editor, like nano, and add the following two lines: autoload -Uz compinit compinit Now save, exit, close and reopen your terminal. Now your system utilities should have [...]

By |2022-10-25T20:37:19+02:00November 29th, 2021|Guide, Tech Support|0 Comments

macOS fix Zsh Home and End keys

When you're using macOS with bash, you can use the Home and End keys on your keyboard to jump to the beginning or end of the line you're on. But Apple switched from bash to Zsh with Catalina, and I noticed those keys don't work anymore. The Fix Edit ~/.zshrc [...]

By |2022-10-25T20:36:27+02:00November 29th, 2021|Guide, Tech Support|1 Comment
Go to Top