[filename_completer] Append '/' to [DIR] automatically
This commit is contained in:
parent
2b23245422
commit
48d6a5378c
@ -126,7 +126,8 @@ def GetPathsStandardCase( path_dir ):
|
|||||||
def GenerateCandidatesForPaths( absolute_paths ):
|
def GenerateCandidatesForPaths( absolute_paths ):
|
||||||
def GenerateCandidateForPath( absolute_path ):
|
def GenerateCandidateForPath( absolute_path ):
|
||||||
is_dir = os.path.isdir( absolute_path )
|
is_dir = os.path.isdir( absolute_path )
|
||||||
return { 'word': os.path.basename( absolute_path ),
|
basename = os.path.basename( absolute_path )
|
||||||
|
return { 'word': basename + '/' if is_dir else basename ,
|
||||||
'dup': 1,
|
'dup': 1,
|
||||||
'menu': '[Dir]' if is_dir else '[File]' }
|
'menu': '[Dir]' if is_dir else '[File]' }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user