sasumner

Results 13 issues of sasumner

### Steps to Reproduce the Issue 1. Start fresh new copy of 7.6 (it should open with one tab, "new 1"). 2. Press ctrl+n three times to create "new 2",...

I have a Pythonscript installed from startup.py that is set up to receive `SCINTILLANOTIFICATION.MODIFYATTEMPTRO` notifications. The callback for this puts a messagebox up if the user attempts to modify a...

### Description of the Issue The _Edit_ menu has an entry called _Paste_ and by default keymapping is shown as mapping to Ctrl+v and Shift+Ins: ![image](https://user-images.githubusercontent.com/30118311/102012536-0efefa00-3d19-11eb-970e-b27ccba821ce.png) However, the actions performed...

N++ v7.5.8 x64 PS 1.2.0.0 It is observed that notepad.activateFile() sometimes seems to ignore the request when its argument is an unsaved file, e.g. "new 1", "new 2", etc. This...

I have two portable installs of N++ and PS: N++ 7.2.2 with PS 1.0.8.0 (32-bit) N++ 7.5.6 with PS 1.1.0.0 (64-bit) From the 64-bit version, when I execute Plugins ->...

Using either 32-bit or 64-bit PythonScript v1.5.4, I get a crash when running the following code: ``` overall_match_number = 0 def match_found(m): global overall_match_number num_groups = len(m.groups()) for g in...

Bug

I have a script where I repeatedly call `notepad.messageBox()`. After the user closes the first message box, I do something in code, then fire another message box. Unfortunately, the "do...

Sometimes in my scripts I want to pop up a file open/saveas box, or a folder-choosing box. As an example, I wanted to write a script to solve this Notepad++...

Feature

With this code: ``` matches = [] editor.research('', lambda m: matches.append(m.span(0))) print(len(matches)) ``` I was semi-surprised to see a non-zero result printed. Any chance that the plugin could trap on...

Question

In version 1.5.2.0, if I have a saved file tab in Notepad++ with a given pathname (call it P), and then I do: ``` notepad.new() editor.setText('blah') notepad.saveAs(P) ``` I will...