BdR76 / CSVLint

CSV Lint plug-in for Notepad++ for syntax highlighting, csv validation, automatic column and datatype detecting, fixed width datasets, change datetime format, decimal separator, sort data, count unique values, convert to xml, json, sql etc. A plugin for data cleaning and working with messy data files.
GNU General Public License v3.0
167 stars 10 forks source link

Does not work with Notepad++ 8.4 #22

Closed tahendry closed 2 years ago

tahendry commented 2 years ago

Hi there

Unfortunately, the plugin does not work with the newest version anymore. 8.3.3 was working, 8.4 not anymore.

cheers Reto

flotux2 commented 2 years ago

A change needs to be done for this plugin to work again:

In Notepad++ v8.4, Scintilla is upgrade from v4.x to v5.x and Lexilla module has been added in the project. With such major update, the old External Lexer Plugins need to migrate to Scintilla5 and add new CreateLexer export function, which return a pointer of ILexer5 instance, in your external lexer plugin to make it work under v8.4.

Source: https://community.notepad-plus-plus.org/topic/22866/make-external-lexer-plugin-work-with-v8-4

BdR76 commented 2 years ago

Thanks for letting me know, I was aware of the issue but didn't have the time to work on an update until now. It's fixed and the plugin list was updated so it will be available in the next Notepad++ update. Notepad++ is updated irregularly, could be a couple of days, could be in a week or more depending on bugfixes etc.

But you can also download the new CSVLint version 0.4.5.1 here and install it manually. Unzip and replace the CSVLint.dll in your .\Program Files\Notepad++\plugins\CSVLint\ folder.

flotux2 commented 2 years ago

@BdR76: Thanks for fixing the problem. I appreciate it because it is a development in your spare time.