GitXplorerGitXplorer
L

ddc-source-file

public
48 stars
6 forks
0 issues

Commits

List of commits on branch main.
Verified
2a551e7af4abf8629f4044f4c583fca95d56fda3

Upgrade deps (#23)

SShougo committed 8 months ago
Verified
72335138349133361e38fe7a0d320a3ff1788839

Fix tests error (#21)

SShougo committed a year ago
Verified
269afc4b18befd12ed0efbc86a3b03e98a4cbb83

Update deps (#20)

SShougo committed a year ago
Verified
f10a559015f1bf1779f9eb6d7db2ad7af6eff89e

Fix completePos (#19)

SShougo committed 2 years ago
Verified
797e8fdc17d3f7b571370fff576ed2d7eb43d143

Add filenameChars (#18)

SShougo committed 2 years ago
Verified
45b849a6e86a9ff12f2b18a7649646efb1dbafa8

Fix example (#17)

hhokorobi committed 2 years ago

README

The README file for this repository.

ddc-file

Doc

Powerful and performant file name completion for ddc.vim.

Required

Configuration

call ddc#custom#patch_global('sources', ['file'])
call ddc#custom#patch_global('sourceOptions', {
    \ 'file': {
    \   'mark': 'F',
    \   'isVolatile': v:true,
    \   'forceCompletionPattern': '\S/\S*',
    \ }})
call ddc#custom#patch_filetype(
    \ ['ps1', 'dosbatch', 'autohotkey', 'registry'], {
    \ 'sourceOptions': {
    \   'file': {
    \     'forceCompletionPattern': '\S\\\S*',
    \   },
    \ },
    \ 'sourceParams': {
    \   'file': {
    \     'mode': 'win32',
    \   },
    \ }})