summaryrefslogtreecommitdiff
path: root/src/fileio.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3515: nano time test fails on Mac and FreeBSDv8.2.3515ichizok2021-10-151-9/+10
* patch 8.2.3510: changes are only detected with one second accuracyv8.2.3510Leah Neukirchen2021-10-141-4/+20
* patch 8.2.3453: autocmd not executed when editing a directoryv8.2.3453Bram Moolenaar2021-09-221-1/+1
* patch 8.2.3247: using uninitialized memory when checking for crypt methodv8.2.3247Bram Moolenaar2021-07-291-5/+6
* patch 8.2.3245: the crypt key may appear in a swap partitionv8.2.3245Bram Moolenaar2021-07-291-4/+0
* patch 8.2.3079: Powershell core not supported by defaultv8.2.3079Mike Williams2021-06-301-2/+5
* patch 8.2.3071: shell options are not set properly for PowerShellv8.2.3071Mike Williams2021-06-281-2/+3
* patch 8.2.3063: crash when switching 'cryptmethod' to xchaha20 with undo filev8.2.3063Bram Moolenaar2021-06-271-0/+8
* patch 8.2.3032: build problems with MSVC, other crypt issues with libsodiumv8.2.3032Christian Brabandt2021-06-211-1/+3
* patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt2021-06-201-2/+38
* patch 8.2.2922: computing array length is done in various waysv8.2.2922K.Takata2021-06-021-1/+1
* patch 8.2.2828: Coverity complains about not checking rename() return valuev8.2.2828Bram Moolenaar2021-05-031-1/+1
* patch 8.2.2294: VMS: a few remaining problemsv8.2.2294Bram Moolenaar2021-01-041-2/+7
* patch 8.2.2276: list of distributed files is outdatedv8.2.2276Bram Moolenaar2021-01-021-0/+1
* patch 8.2.2055: MS-Windows: two Vim instances may use the same temp filev8.2.2055Bram Moolenaar2020-11-261-2/+9
* patch 8.2.1919: assert_fails() setting emsg_silent changes normal executionv8.2.1919Bram Moolenaar2020-10-281-1/+1
* patch 8.2.1898: command modifier parsing always uses global cmdmodv8.2.1898Bram Moolenaar2020-10-241-1/+1
* patch 8.2.1832: readdirex() error is displayed as a messagev8.2.1832Bram Moolenaar2020-10-111-2/+2
* patch 8.2.1793: not consistently giving the "is a directory" warningv8.2.1793Bram Moolenaar2020-10-031-10/+18
* patch 8.2.1570: configure check for dirfd() does not work on HPUXv8.2.1570Bram Moolenaar2020-09-021-0/+5
* patch 8.2.1422: the Mac GUI implementation is outdatedv8.2.1422Bram Moolenaar2020-08-111-6/+0
* patch 8.2.1215: Atari MiNT support is outdatedv8.2.1215Bram Moolenaar2020-07-141-1/+1
* patch 8.2.1128: the write message mentions characters, but it's bytesv8.2.1128Bram Moolenaar2020-07-051-2/+2
* patch 8.2.1088: a very long translation might cause a buffer overflowv8.2.1088Bram Moolenaar2020-06-291-3/+7
* patch 8.2.0988: getting directory contents is always case sortedv8.2.0988Bram Moolenaar2020-06-161-5/+32
* patch 8.2.0967: unnecessary type casts for vim_strnsave()v8.2.0967Bram Moolenaar2020-06-121-1/+1
* patch 8.2.0966: 'shortmess' flag "n" not used in two placesv8.2.0966Bram Moolenaar2020-06-121-1/+2
* patch 8.2.0947: readdirex() doesn't handle broken link properlyv8.2.0947Bram Moolenaar2020-06-101-2/+12
* patch 8.2.0888: readdirex() returns size -2 for a directoryv8.2.0888Bram Moolenaar2020-06-021-1/+1
* patch 8.2.0875: getting attributes for directory entries is slowv8.2.0875Bram Moolenaar2020-06-011-103/+381
* patch 8.2.0853: ml_delete() often called with FALSE argumentv8.2.0853Bram Moolenaar2020-05-301-4/+4
* patch 8.2.0711: temp directory might be clearedv8.2.0711Bram Moolenaar2020-05-071-0/+42
* patch 8.2.0474: cannot use :write when using a plugin with BufWriteCmdv8.2.0474Bram Moolenaar2020-03-291-4/+14
* patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar2020-02-261-97/+101
* patch 8.2.0296: mixing up "long long" and __int64 may cause problemsv8.2.0296Bram Moolenaar2020-02-221-2/+2
* patch 8.2.0209: function a bit far away from where it's usedv8.2.0209Bram Moolenaar2020-02-041-5/+5
* patch 8.2.0009: VMS: terminal version doesn't buildv8.2.0009Bram Moolenaar2019-12-151-5/+0
* patch 8.1.2379: using old C style commentsv8.1.2379Bram Moolenaar2019-12-011-535/+530
* patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar2019-12-011-1/+1
* patch 8.1.2371: FEAT_TEXT_PROP is a confusing namev8.1.2371Bram Moolenaar2019-11-301-2/+2
* patch 8.1.2313: debugging where a delay comes from is not easyv8.1.2313Bram Moolenaar2019-11-171-1/+1
* patch 8.1.2302: :lockmarks does not work for '[ and ']v8.1.2302Bram Moolenaar2019-11-161-11/+13
* patch 8.1.2094: the fileio.c file is too bigv8.1.2094Bram Moolenaar2019-09-281-2760/+20
* patch 8.1.2064: MS-Windows: compiler warnings for unused argumentsv8.1.2064Bram Moolenaar2019-09-211-1/+1
* patch 8.1.1891: functions used in one file are globalv8.1.1891Bram Moolenaar2019-08-201-1/+1
* patch 8.1.1843: might be freeing memory that was not allocatedv8.1.1843Bram Moolenaar2019-08-131-8/+11
* patch 8.1.1789: cannot see file name of preview popup windowv8.1.1789Bram Moolenaar2019-08-011-0/+3
* patch 8.1.1780: warning for file no longer available is repeatedv8.1.1780Bram Moolenaar2019-07-311-1/+7
* patch 8.1.1736: viminfo support is spread outv8.1.1736Bram Moolenaar2019-07-231-22/+0
* patch 8.1.1547: functionality of bt_nofile() is confusingv8.1.1547Bram Moolenaar2019-06-151-5/+5