Browse Source

completion: Use existing_nodes_only flag

Serj Kalichev 4 months ago
parent
commit
83947f54fb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/pline.c

+ 2 - 0
src/pline.c

@@ -1331,6 +1331,8 @@ void pline_print_completions(const pline_t *pline, bool_t help,
 
 		if (!node)
 			continue;
+		if (existing_nodes_only)
+			continue;
 
 		// Node
 		if (PCOMPL_NODE == pcompl->type) {