How to open Clion straight out of the terminal

How to open Clion straight out of the terminal With the open command in MacOS you can open applications directly from the terminal, if you are a in a certain directory and you would like to open it in clion without starting clion first and then select the directory again, you can just run open -a Clion . 😊

November 28, 2019 Â· 1 min Â· Moritz Gnisia

How to use VSCode for writing compiler commands

How to use VSCode for writing compiler commands Simplify writing compiler commands Motivation While learning C/C++ I found that writing the compiler commands for the terminal is tedious job especially if you write many files. To simplify this process you can use the snippets of vscode. Solution The steps are as follows: Open the command palette Enter Configure User Snippet Select the language for which you would like to configure your the snippets, I choose C A ....

September 27, 2019 Â· 1 min Â· Moritz Gnisia