Skip to content

Instantly share code, notes, and snippets.

View mlabrkic's full-sized avatar

Mladen Brkić mlabrkic

  • HT Servisi d.o.o.
  • Zagreb, Croatia
  • 19:56 (UTC +02:00)
View GitHub Profile
@mlabrkic
mlabrkic / Windows_Terminal.txt
Last active August 21, 2023 16:21
"Windows Terminal"
## Windows Terminal
https://learn.microsoft.com/en-us/windows/terminal/
------------------------------------------------------------
### How to use the command palette in Windows Terminal
https://learn.microsoft.com/en-us/windows/terminal/command-palette
You can invoke the command palette by typing Ctrl+Shift+P.
@mlabrkic
mlabrkic / MC_script_run_Windows_Terminal.txt
Last active August 16, 2023 13:18
"Multi Commander" script: run "Windows Terminal"
SCRIPT:
@var $app = "wt";
@var $fileDir = PathGetPathPart($selectedFile, 1);
// Run Windows Terminal: left "Command Prompt", and right my default "PowerShell"
// @var $args = "-d " + $fileDir + " cmd /k dir ; split-pane -d " + $fileDir;
// Run Windows Terminal: left my default "PowerShell", and right "bash" (via Windows Subsystem for Linux (WSL))
@var $args = "-d " + $fileDir + " ; split-pane -d " + $fileDir + " wsl.exe";
@mlabrkic
mlabrkic / MC_Choose_the_Neovim_config_and_build.txt
Last active April 14, 2022 15:17
"Multi Commander" script: Choose the Neovim configuration (and/or release build), http://multicommander.com/
Warning: there are mistakes!
Choose the Neovim configuration (and/or release build):
stable config (and stable release build)
or
test config (and stable or prerelease (nightly) build)
------------------------------------------------------------
What to do? Where to install Neovim?
@mlabrkic
mlabrkic / MC_Choose_the_Neovim_CONFIG.txt
Last active December 21, 2022 09:08
"Multi Commander" script: Choose the Neovim configuration (stable config or test config), http://multicommander.com/
Choose the Neovim configuration: stable config or test config
------------------------------------------------------------
What to do? Where to install Neovim?
------------------------------
Install Neovim in a folder C:\UTILS\Neovim\
1. Download:
https://github.com/neovim/neovim/wiki/Installing-Neovim#install-from-download
@mlabrkic
mlabrkic / MC_Mklink_nvim_folder_Symlink.txt
Last active April 11, 2022 13:55
"Multi Commander" script: create Symlink to nvim folder, http://multicommander.com/
@mlabrkic
mlabrkic / MC_Create_folder_and_move_selected_files_date.txt
Last active April 11, 2022 08:37
"Multi Commander" script: Create folder (+ current date and time) and move selected files to that folder (+ docs/multiscript/functions), http://multicommander.com/
// Create_folder_and_move_selected_files_date, F12
// "Multi Commander" script:
// Create folder (+ current date and time)
// and move selected files to that folder (+ docs/multiscript/functions)
// http://forum.multicommander.com/forum/index.php/topic,2079.0.html
// Contributor: pncdaspropagandas
// #########################################################
@mlabrkic
mlabrkic / MC_Create_folder_your_input_and_date_format.txt
Last active April 11, 2022 08:24
"Multi Commander" script: Create a new folder (your input, current date and time, format), http://multicommander.com/
// MC_Create_folder_your_input_and_date_format, F12
// "Multi Commander" script: Create a new folder (your input, current date and time, format)
// 2022-02M-20 18:55:27
// http://forum.multicommander.com/forum/index.php/topic,1184.msg4072.html#msg4072
// Multi Commander Support Forum »Multi Commander »Script »create a new open folder with the current date
// Contributor: Ulfhednar
// ---------------------------------------------------------
@mlabrkic
mlabrkic / MC_Create_folder_your_input_and_date.txt
Last active April 11, 2022 08:21
"Multi Commander" script: Create a new folder (your input, current date and time), http://multicommander.com/
// MC_Create_folder_your_input_and_date, F12
// "Multi Commander" script:
// Create a new folder (your input, current date and time)
// 2022-02M-20 18:07:48
// http://forum.multicommander.com/forum/index.php/topic,1184.msg4072.html#msg4072
// Multi Commander Support Forum »Multi Commander »Script »create a new open folder with the current date
// Contributor: Ulfhednar
@mlabrkic
mlabrkic / MC_Create_folder_and_move_selected_files.txt
Last active April 11, 2022 08:18
"Multi Commander" script: Create folder and move selected files to that folder (+ docs/multiscript/functions), http://multicommander.com/
// Create_folder_and_move_selected_files, F12
// "Multi Commander" script:
// Create folder and move selected files to that folder (+ docs/multiscript/functions)
// http://forum.multicommander.com/forum/index.php/topic,2079.0.html
// Contributor: pncdaspropagandas
// #########################################################
@mlabrkic
mlabrkic / MC_MultiCommander.txt
Last active April 11, 2022 08:19
"Multi Commander" script: Run Neovim (+ MultiScript info to get started), http://multicommander.com/
"Multi Commander"
http://multicommander.com
File manager / OS: Windows 10
Multi Commander is a multi-tabbed file manager and is an alternative to the standard Windows "File Explorer".
It uses the very popular and efficient dual-panel layout.
Note: "File Explorer", previously known as "Windows Explorer", is a file manager application
that is included with releases of the Microsoft Windows operating system from Windows 95 onwards.