These commands are designed to streamline the workflow of programmers by quickly navigating to the active Explorer path and performing various actions.
- Open Directory in Visual Studio Code
- Clone Git Repository into Directory
- Launch JupyterLab in Directory
- Cloc in current Directory
-
For PowerShell:
> cd {active_explorer_path} ; code .
-
For Command Prompt (cmd):
> cd /d {active_explorer_path} && code .
-
For RunCommand:
> code {active_explorer_path}
-
For Command Prompt (cmd):
> cd /d {active_explorer_path} && git clone {clipboard}
-
For PowerShell:
> cd {active_explorer_path} ; git clone {clipboard}
-
For RunCommand:
> git clone {clipboard} {active_explorer_path}repo
-
For Command Prompt (cmd):
> cd /d {active_explorer_path} && jupyter-lab
-
For PowerShell:
> cd {active_explorer_path} ; jupyter-lab
-
For RunCommand:
> jupyter-lab {active_explorer_path}
-
For Command Prompt (cmd):
> cd /d {active_explorer_path} && cloc .
-
For PowerShell:
> cd {active_explorer_path} ; cloc .
-
For RunCommand:
> cloc {active_explorer_path}
These commands help simplify the process of navigating to project directories, opening them in Visual Studio Code, launching JupyterLab, and cloning Git repositories, enhancing productivity for programmers.