Andreas Jönsson
0e42d3348a
Fix handling of negative numbers + empty lines.
10 years ago
Andreas Jönsson
ad2cc85c0e
Simplify NativeLangSpeaker::messageBox.
10 years ago
Andreas Jönsson
d0bafb7fba
Add more options for sorting.
...
User can now choose between lexicographic, integer and decimal sorting.
For decimal sorting there are two further options: decimal point ('.')
or decimal comma (',').
When doing integer/decimal sort, the parsing is not as strict as
before. E.g during integer sorting the program will interpret "123abc"
as 123.
Performance of integer sorting has been improved by 30%.
The implementation of sorting is delegated to classes which implement
the new "ISorter" interface. Unfortunately due to template issues most
of the code had to go in the header file.
10 years ago
Andreas Jönsson
4d8e731d3e
Add const to NativeLangSpeaker::messageBox().
10 years ago
Don Ho
5c272a8818
[RELEASE] Notepad++ 6.7.8 release.
10 years ago
Don Ho
50410cc744
[BUG_FIXED] Fix compiling problem in debug mode
...
This problem is due to the sort lines enhancement.
10 years ago
Don Ho
6b853cf3d3
[UPDATE] Update WinGup to version 3.0 and several localization files.
10 years ago
Don Ho
c033d58cb8
[UPDATE] Remove outdated user manual from release package.
10 years ago
Andreas Jönsson
98cafadc3f
Remove const.
10 years ago
Andreas Jönsson
014c06c89c
Remove const.
10 years ago
Don HO
72c8f0b4ae
Merge pull request #44 from andreas-jonsson/more_optimize_sort
...
[BUG_FIXED] Fix issues related to sort optimization.
10 years ago
Don HO
b6d5c2b45a
Merge pull request #35 from cmeriaux/goToNextIndicator
...
[BUG_FIXED] Fix "Jump to next indicator" command broken with only one character.
10 years ago
Don HO
3a301ee6ad
Merge pull request #48 from laugel/master
...
[UPDATE] Added the "config" extension for XML files.
10 years ago
Don HO
c3c0cc4a24
Merge pull request #47 from prclx323800/translation
...
[UPDATE] Translate "Restore Recent Closed File".
10 years ago
Don HO
4ab13f02cb
Merge pull request #52 from oneill/fix-auto-detect-settings
...
[BUG_FIXED] Fix file status auto-detection settings.
10 years ago
oneill@users.noreply.github.com
cf0f8df7a8
Retain field values when disabling status auto-detection
10 years ago
oneill@users.noreply.github.com
d98232b76e
Fix the file status auto-detection setting not being set correctly
10 years ago
Andreas Jönsson
83de4a9da2
Use long long in numeric sort (ie 64 bit numbers).
10 years ago
Jean-Yves LAUGEL
22f2e101a6
Added the "config" extension for XML files.
10 years ago
Lin Xiao
ba0e08f06e
Conform to translation file format
10 years ago
Lin Xiao
2968fb9a29
Translate "Restore Recent Closed File"
10 years ago
Andreas Jönsson
f4132c1634
Add "repeat" option to column editor.
...
This allows the inserted text to be repeated x times. As an example,
if we have selected 6 columns and let initial number = 10,
increase by = 5 and repeat = 2, then the column editor will insert the
following:
10
10
15
15
20
20
10 years ago
Andreas Jönsson
ee225f5cad
Handle empty lines properly in numeric sort.
10 years ago
Andreas Jönsson
936d9c56fc
When sorting, reserve enough space for work + output.
10 years ago
Andreas Jönsson
60505765cc
Remove ScintillaEditView::getLine, no longer used.
10 years ago
Andreas Jönsson
dd846658e6
Use new kind of loop.
10 years ago
Andreas Jönsson
501ce1d689
Make reference signs consistent.
10 years ago
Andreas Jönsson
83c16755ab
Don't cache int->string conversion, it doesn't speed up anything.
10 years ago
Andreas Jönsson
4b3fbdd570
Don't throw pointers (MFC habit).
10 years ago
Andreas Jönsson
6f004d86a4
Rename sortAllLines -> sortEntireDocument.
10 years ago
Andreas Jönsson
e258bcb3a7
Speed up numeric sorting by 10x.
...
Convert strings to int, sort, then convert back to strings.
10 years ago
Andreas Jönsson
bcbe48b13f
Make stoi_CountEmptyLinesAsMinimum more restrictive.
...
It now only accepts digits and possibly a single minus character as the first character.
Ordinary std::stoi has too much special magic, e.g. it converts "1 a" to "1".
10 years ago
Andreas Jönsson
0eca4db949
Improve numeric sorting. No need to read lines from Scintilla, we already
...
have them in a vector.
10 years ago
Andreas Jönsson
eee7c4f16e
Sort numerically (not lexicographically) if all lines are integers.
10 years ago
Andreas Jönsson
6e84be21f4
Fix newline bug when not sorting all lines.
10 years ago
Andreas Jönsson
351b9b6bff
Rename quickSortLines -> sortLines.
10 years ago
Andreas Jönsson
01c1667b09
Use TCHAR instead of _TCHAR.
10 years ago
Andreas Jönsson
c926e18f42
Use more const.
10 years ago
Don HO
00c2e09d98
Merge pull request #40 from andreas-jonsson/optimize_sort
...
[ENHANCEMENT] Improve largely the performance of sort lines feature
10 years ago
Andreas Jönsson
4f7752e4a3
Add more const.
10 years ago
Andreas Jönsson
1f4a1fb2e7
Optimize sort.
...
Remove custom, recursive implementation of quicksort which becomes too
slow to use after a couple of hundred lines.
10 years ago
Don Ho
4e065b2d3f
[UPDATE] Conform to GitHub project standard format.
10 years ago
Don HO
b02adce942
Merge branch 'master' of https://github.com/donho/notepad-plus-plus
10 years ago
Don HO
c40a6fc384
[UPDATE] Make project recompilable on VS2005
10 years ago
Don Ho
91f9751a85
[BUG_FIXED] Fix Setting on cloud for Google drive unrecognized regression.
10 years ago
Christophe Meriaux
352965b2e7
go to next indicator broken with only one char
10 years ago
Don HO
572f67f511
Merge pull request #9 from andreas-jonsson/tabbar
...
[CHANGE_BEHAVIOUR] When hiding tab bar via command-line parameter, don't affect settings.
10 years ago
Don Ho
9aa5d708ed
[BUG_FIXED] Fix a annoying regression about "the buffer passed to GetFullPathName was too small!" message dialog.
10 years ago
Don HO
a2a75be11d
Merge pull request #21 from kmb32123/patch-1
...
[UPDATE] Add readme.md hyperlinks.
10 years ago
Don HO
055481ab32
Update CONTRIBUTING.md
10 years ago