Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- These are for the NppExec plugin for Notepad++. After they're configured, you can assign Hotkeys here:
- Settings > Shortcut Mapper
- You can assign multiple Hotkeys to VENV. Just remember to change the Project Name for each environment.
- -----------------------------------------------------------------
- Batch:
- npp_save
- cd "$(CURRENT_DIRECTORY)"
- cmd /c "$(FULL_CURRENT_PATH)"
- PowerShell:
- npp_save
- cd "$(CURRENT_DIRECTORY)"
- powershell.exe -ExecutionPolicy Unrestricted -NoLogo -File "$(FULL_CURRENT_PATH)"
- Python:
- npp_save
- cd "$(CURRENT_DIRECTORY)"
- python "$(FULL_CURRENT_PATH)"
- VENV:
- npp_save
- cd "$(CURRENT_DIRECTORY)"
- cmd /c "C:\Users\J2897\Code\Batch\NPP_VENV.bat" $(FULL_CURRENT_PATH) <Project Name>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement