add socket as item_type
This commit is contained in:
@ -57,6 +57,8 @@ class NerdTree():
|
|||||||
item_type = 'l'
|
item_type = 'l'
|
||||||
elif path_object.is_file():
|
elif path_object.is_file():
|
||||||
item_type = 'f'
|
item_type = 'f'
|
||||||
|
elif path_object.is_socket():
|
||||||
|
item_type = 's'
|
||||||
|
|
||||||
assert item_type
|
assert item_type
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user