Mark Amery
Mark Amery
See https://github.com/kpdecker/jsdiff/issues/474#issuecomment-1886906877 for my analysis of why this is a good idea.
This would let us support: * languages without spaces - e.g. [Chinese, Japanese](https://github.com/kpdecker/jsdiff/pull/328) * languages where punctuation that is normally a word break can appear in the middle of a...
Surely these behaviours can't be intended? ``` > text1 = 'foo\nbar\nbaz\nqux\n' 'foo\nbar\nbaz\nqux\n' > text2 = 'foo\nbaz\nqux\n' 'foo\nbaz\nqux\n' > patch = diff.createPatch('foo.txt', text1, text2) 'Index: foo.txt\n' + '===================================================================\n' + '--- foo.txt\n'...
* Are there optimizations we should nick? * Should we provide a comparison in the README as suggested by @josephrocca in https://github.com/kpdecker/jsdiff/issues/225? Key places to look seem to be: *...
It's confusing and shouldn't be necessary. Steps to this: 1. Figure out precisely what the scenario was in https://github.com/kpdecker/jsdiff/issues/141 that was tripping up @soulbeing. (Did the *diff* file use `\r\n`...
http://docs.sublimetext.info is down. I get an ERR_NAME_NOT_RESOLVED in Chrome, and I think https://mxtoolbox.com/SuperTool.aspx?action=a%3adocs.sublimetext.info&run=toolpage# confirms that the domain has no DNS records. Looks like somebody needs to reregister the domain! ---...
- Version by `html2text --version` 2020.1.16 - Test script ``` echo 'Visit: http://example.com ' | html2text ``` This produces: ``` Visit: [ http://example.com ](http://example.com) ``` but it would be nicer...
Presently the plugin just spawns a daemon thread that checks every 5 seconds what files and folders should be ignored and shoves them into the appropriate setting in the preferences...
[Somebody on Stack Overflow says](http://stackoverflow.com/questions/18482976/tell-sublime-text-to-ignore-everything-in-gitignore/26372261?noredirect=1#comment47266934_26372261): > Gave your package a shot, and it brought down Sublime pretty quickly, with tons of "number of files to index exceeds sanity limit, bailing...
Adding exceptions seems like something most users will want to do.