GitXplorerGitXplorer
L

ddc-source-file

public
48 stars
6 forks
0 issues

Commits

List of commits on branch main.
Unverified
34b362d45957183b4ec99d618a19a5f5f517c365

Add override

SShougo committed 4 months ago
Verified
f2e9d706a74b843d11c55c2a39bcd7e7d9ac7b24

Use cross/dir instead (#29)

SShougo committed 4 months ago
Verified
c92ada90263fa7ed6588a2ce1aab0b3bf42c63fc

Update ddc and remove deps.ts (#28)

SShougo committed 4 months ago
Verified
f39c4eda51de2f2ba8b3365491db7aead1abb6fb

Fix type errors and update deps (#27)

SShougo committed 5 months ago
Verified
dbe1deaf71cac7d54e5c94833b1f4b3dfc67e5da

Use JSR modules (#26)

SShougo committed 6 months ago
Verified
8b7c1eff7ba9dc668bd907c429ba5fcaa24adbb7

Fix deprecated warnings (#24)

SShougo committed 8 months 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',
    \   },
    \ }})