PythonScript
PythonScript copied to clipboard
Python Script plugin for Notepad++
Hello, I'm a new PythonScript user. I'm not a geek and I don't know Python. On the Notepad++ forum I was recommended to install PythonScript to solve a CSS problem...
If donations are still welcome, the links should certainly be repaired.
Consider seldom-used (no keycombo assigned) and frequently-used (a keycombo is assigned) scripts. To run the seldom-used script, one must find it via the menu system; the more scripts one has...
Under PS 3.0.16.0 (and 2.0.0.0 as well), `editor.research()` and `editor.search()` won't search backwards, i.e., when the `startPosition` argument is greater than the `endPosition` argument. It return no matches in such...
Under PS 3.0.16.0 (and 2.0.0.0 as well), consider this script: ```py # -*- coding: utf-8 -*- from __future__ import print_function # see from Npp import * def match_found(m): print(m.groups()) matches...
Script bound to Ctrl-only keycombo can't be opened for edit by holding Ctrl and clicking it in menu
Create simple script and give it a simple name (e.g. `t.py`): ``` from Npp import * notepad.prompt('hello:', 'there', 'dude') ``` Run the script from the menu to see it works:...
Hi, today Notepad++ tells me this plugin is no more compatible.
... because it's not always the case that the whole document is needed if nothing is selected. For example, current line could be considered instead. So I suggest for these...
Hey, first time making a PR on this repo. The description of changes are in comments of individual commits, as they are long descriptions. If it seems too much to...
Using any of these in a pythonscript: ``` exit(), quit(), sys.exit(), os._exit(0) ``` Causes N++ to ~exit abruptly~ crash. Notepad++ v8.5.4 (32-bit) Build time : Jun 17 2023 - 20:40:14...