From 96d038c44a1ef26892adf4b775d1e2efe9e7b44b Mon Sep 17 00:00:00 2001 From: JSDurand Date: Sat, 16 Jan 2021 14:04:07 +0800 Subject: The first stable version Fixes: Avoid adding suffix-link repeatedly * embark-conf.el ("embark"): Use view-mode instead of view-file * init.el (load-after-function): Modify the macro so that it no longer redefines built-in functions. (global-map): ("view-conf.el"): Rename view-functions.el to view-conf.el * suffix tree/generalized-suffix-tree.el (gst-edge-length): (gst-add-suffix-link): (gst-canonize): (gst-extend-tree): (gst-build-for-strs): Fixed the bug. * suffix tree/gst debugging platform.txt (strs): Add a new debugging file * suffix tree/gst test ground (2).txt (strs): Do more debugging * tab-conf.el (durand-switch-tab-dwim): Add my own dwim tab function. (global-map): Bind it to the global map. * theme.el Update the modus-themes. * view-conf.el Rename view-functions.el to view-conf.el. --- embark-conf.el | 8 +- init.el | 31 +- modeline.el | 1 - suffix tree/generalized-suffix-tree.el | 57 +- suffix tree/gst debugging platform.txt | 5398 ++++++++++++++++++++++++++++++++ suffix tree/gst test ground (2).txt | 1541 +++++++++ tab-conf.el | 58 + theme.el | 88 +- view-conf.el | 96 + view-functions.el | 90 - 10 files changed, 7210 insertions(+), 158 deletions(-) create mode 100644 suffix tree/gst debugging platform.txt create mode 100644 view-conf.el delete mode 100644 view-functions.el diff --git a/embark-conf.el b/embark-conf.el index d03b5bc..ce09e52 100644 --- a/embark-conf.el +++ b/embark-conf.el @@ -24,9 +24,11 @@ (define-key embark-general-map (vector ?v) (lambda (&rest _args) (interactive) - (cond - ((buffer-file-name) - (view-file (buffer-file-name)))))) + (view-mode) + ;; (cond + ;; ((buffer-file-name) + ;; (view-file (buffer-file-name)))) + )) (define-key embark-general-map (vector 127) #'durand-switch-other-buffer) ;;;###autoload diff --git a/init.el b/init.el index 0ce3c09..f0cbc5b 100644 --- a/init.el +++ b/init.el @@ -46,17 +46,20 @@ After loading, execute DEF. Finally if REDEFINE-P is non-nil, then FUNCTION-NAME will be defined as DEF after loading." - `(defun ,function-name () - ,doc - (interactive) - (load-config ,file-path) - ,@def - ,(cond - (redefine-p - `(defun ,function-name () - ,doc - (interactive) - ,@def))))) + (cond + ((fboundp function-name)) + (t + `(defun ,function-name () + ,doc + (interactive) + (load-config ,file-path) + ,@def + ,(cond + (redefine-p + `(defun ,function-name () + ,doc + (interactive) + ,@def))))))) (load-config "common.el") @@ -143,6 +146,12 @@ then FUNCTION-NAME will be defined as DEF after loading." (defalias 'magit 'magit-status) (magit)) +(define-key global-map (vector 3 103) 'magit) + +;;; Viewing things + +(load-config "view-conf.el") + ;;; flymake (prepare-in-hook-once prepare-flymake prog-mode-hook "flymake-conf.el") diff --git a/modeline.el b/modeline.el index 6a3412a..cb0df77 100644 --- a/modeline.el +++ b/modeline.el @@ -24,7 +24,6 @@ (modeline-spc) (modeline-format-directory))) - ;;;###autoload (defun modeline-format-left () "The left mode line format." diff --git a/suffix tree/generalized-suffix-tree.el b/suffix tree/generalized-suffix-tree.el index 07d9b18..0435614 100644 --- a/suffix tree/generalized-suffix-tree.el +++ b/suffix tree/generalized-suffix-tree.el @@ -59,7 +59,7 @@ And STR-LENS is here so that we know the lengths of previous strings." (caddr node)) (t (gst-min (caddr node) (1+ position)))) (cond - ((and (= node-active-num num) + ((and (/= node-active-num num) leafp) (or (cadr (assoc num leaf-labels #'eq)) (cadr node))) @@ -102,9 +102,11 @@ In particular, the node corresponding to NEED-SL in TREE gets a suffix link pointing to NODE. This always returns NODE." - (cond - ((and (> need-sl 1) (/= need-sl node)) - (setcar (cdr (cdr (cdr (gethash need-sl tree)))) node))) + (let ((suffix-link-cdr (nthcdr 3 (gethash need-sl tree)))) + (cond + ((and (> need-sl 1) (/= need-sl node) + (= (car suffix-link-cdr) 0)) + (setcar suffix-link-cdr node)))) node) ;;;###autoload @@ -119,7 +121,7 @@ shall continue walking down the tree, so we return t in the first element, while setting other variables to the correct values so that the caller of this function can use the updated values. -ACTIVE-EDGE-INDEX is for the purpose of updating solely." +ACTIVE-EDGE-INDEX is present solely for the purpose of updating." (let* ((actual-node (gethash node tree)) (node-edge-length (gst-edge-length actual-node position active-number str-lens))) @@ -177,13 +179,21 @@ lengths repeatedly." (car (nthcdr 4 actual-node))))))) (cond ((null nxt) - (let ((leaf (gst-new-node tree last-added num position nil - (- position remain -1)))) - (setq last-added leaf) - (puthash (gst-aref strs active-number active-edge-index) - leaf - (car (nthcdr 4 (gethash active-node tree)))) - (setq need-sl (gst-add-suffix-link tree need-sl active-node))) + ;; We don't want many terminating characters branches. + (cond + ((and (eq character -1) + (eq (caddr actual-node) 'infty) + (eq (gst-aref strs (car actual-node) + (cadr actual-node)) + -1))) + (t + (let ((leaf (gst-new-node tree last-added num position nil + (- position remain -1)))) + (setq last-added leaf) + (puthash (gst-aref strs active-number active-edge-index) + leaf + (car (nthcdr 4 (gethash active-node tree)))) + (setq need-sl (gst-add-suffix-link tree need-sl active-node))))) ;; rule 2 ) (t @@ -219,7 +229,12 @@ lengths repeatedly." ;; we don't want to break since this is a ;; terminating symbol. So we invent a new variable ;; to do this. - (setq terminating-no-split t)) + (setq terminating-no-split t) + ;; But if remain = 1 then we do want to break. + (cond + ((eq remain 1) + (setq breakp t))) + ) (t (setq breakp t))))) (cond @@ -266,7 +281,15 @@ lengths repeatedly." (let ((slink (cadddr (gethash active-node tree)))) (cond ; follow the suffix link or go to root ((> slink 1) slink) - (t 1)))))))))) + (t 1))))))))) + ;; (cond ((eq character -1) + ;; (insert (format "Extending terminating character\n")) + ;; (insert "strs: " (format "%S" strs) "\n") + ;; (lcs-debug remain active-node active-edge-index + ;; active-number active-length num + ;; continue-p breakp terminating-no-split) + ;; (gst-print-tree tree strs))) + ) (list tree last-added remain active-node active-number active-edge-index active-length))) @@ -284,14 +307,14 @@ lengths again." (setq last-added active-node) (while (< index len) (let* ((position 0) - (character (ignore-errors (gst-aref strs index position))) + (character (gst-aref strs index position)) (remain 0) (active-node 1) ; start from the root - (active-number index) + (active-number index) ; root comes (active-edge-index 0) (active-length 0) result) ; temporary holder - (while character + (while (and (< position (nth index str-lens)) character) ;; (setq old-character character) (setq result (gst-extend-tree tree last-added position remain active-node active-number active-edge-index diff --git a/suffix tree/gst debugging platform.txt b/suffix tree/gst debugging platform.txt new file mode 100644 index 0000000..f725e0d --- /dev/null +++ b/suffix tree/gst debugging platform.txt @@ -0,0 +1,5398 @@ +(setq test (gst-build-for-strs + (mapcar + (lambda (str) + (vconcat str (list -1))) + '("ido-completions" + ;; "url-file-name-all-completions" + )))) + +(gst-print-tree test (mapcar + (lambda (str) + (vconcat str (list -1))) + '("ido-completions" + ;; "url-file-name-all-completions" + ))) + +(setq test-result + (gst-extend-tree test 19 0 0 1 1 0 0 ?u + (mapcar + (lambda (str) + (vconcat str (list -1))) + '("ido-completions" + "url-file-name-all-completions" + )) + 1 '(16 30))) + +(save-excursion + (gst-print-tree (car test-result) + (mapcar + (lambda (str) + (vconcat str (list -1))) + '("ido-completions" + "u" + )))) + +root + i + ons$ (0 : 11) + do-completions$ (0 : 0) + do-completions$ (0 : 1) + o + mpletions$ (0 : 5) + -completions$ (0 : 2) + ns$ (0 : 12) + -completions$ (0 : 3) + completions$ (0 : 4) + mpletions$ (0 : 6) + pletions$ (0 : 7) + letions$ (0 : 8) + etions$ (0 : 9) + tions$ (0 : 10) + ns$ (0 : 13) + s$ (0 : 14) + $ (0 : 15) + u$ (1 : 0) + +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 15 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 16 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 12 +active-node: 1 +active-edge-index: 18 +active-number: 1 +active-length: 11 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 1 +active-edge-index: 19 +active-number: 1 +active-length: 10 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 7 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 1 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 36 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 9 +active-node: 1 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 1 +active-edge-index: 22 +active-number: 1 +active-length: 7 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 22 +active-edge-index: 23 +active-number: 1 +active-length: 6 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 28 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 7 +active-node: 30 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 6 +active-node: 1 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 1 +active-edge-index: 25 +active-number: 1 +active-length: 4 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 14 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 1 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 7 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 36 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 1 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 33 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 1 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (1 : 29)$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 69 +active-edge-index: 15 +active-number: 2 +active-length: 3 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -point$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 71 +active-edge-index: 15 +active-number: 2 +active-length: 3 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -po + $ (2 : 27) + int$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Generalized suffix tree for: ido-completions, , url-file-name-all-completions, , comint-completion-at-point, : +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -po + $ (2 : 27) + int$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + + +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 0 +active-node: 1 +active-edge-index: 15 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (0 : 5), (0 6 infty 0 nil ((0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 5, -completions$$ (0 : 3), (0 3 infty 0 nil ((0 3))) + key: 6, completions$$ (0 : 4), (0 4 infty 0 nil ((0 4))) + key: 9, mpletions$$ (0 : 6), (0 6 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 11, letions$$ (0 : 8), (0 8 infty 0 nil ((0 8))) + key: 12, etions$$ (0 : 9), (0 9 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 17, ns$$ (0 : 13), (0 13 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 0 +active-node: 1 +active-edge-index: 16 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (0 : 5), (0 6 infty 0 nil ((0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 5, -completions$$ (0 : 3), (0 3 infty 0 nil ((0 3))) + key: 6, completions$$ (0 : 4), (0 4 infty 0 nil ((0 4))) + key: 9, mpletions$$ (0 : 6), (0 6 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 11, letions$$ (0 : 8), (0 8 infty 0 nil ((0 8))) + key: 12, etions$$ (0 : 9), (0 9 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 17, ns$$ (0 : 13), (0 13 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 12 +active-node: 1 +active-edge-index: 18 +active-number: 1 +active-length: 11 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (0 : 5), (0 6 infty 0 nil ((0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (0 : 4), (0 4 infty 0 nil ((0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (0 : 6), (0 7 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 11 +active-node: 1 +active-edge-index: 19 +active-number: 1 +active-length: 10 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (0 : 5), (0 6 infty 0 nil ((0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (0 : 6), (0 7 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 11 +active-node: 7 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (0 : 5), (0 6 infty 0 nil ((0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (0 : 6), (0 7 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 10 +active-node: 1 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (0 : 6), (0 7 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 10 +active-node: 36 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (0 : 6), (0 7 infty 0 nil ((0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 9 +active-node: 1 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (0 : 7), (0 7 infty 0 nil ((0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 8 +active-node: 1 +active-edge-index: 22 +active-number: 1 +active-length: 7 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 8 +active-node: 22 +active-edge-index: 23 +active-number: 1 +active-length: 6 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 8 +active-node: 28 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (0 : 8), (0 10 infty 0 nil ((0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 7 +active-node: 30 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (0 : 9), (0 10 infty 0 nil ((0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 6 +active-node: 1 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (0 : 10), (0 10 infty 0 nil ((0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 5 +active-node: 1 +active-edge-index: 25 +active-number: 1 +active-length: 4 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 5 +active-node: 14 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (0 : 11), (0 12 infty 0 nil ((0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 4 +active-node: 1 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 4 +active-node: 7 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 1 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (0 : 12), (0 13 infty 0 nil ((0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 3 +active-node: 36 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 2 +active-node: 1 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 2 +active-node: 33 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 1 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (0 : 13), (0 14 infty 0 nil ((0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 1 +active-node: 1 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 33 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (1 : 28)$ (0 : 13), (0 14 infty 0 nil ((1 28) (0 13))) + key: 18, s$$ (0 : 14), (0 14 infty 0 nil ((0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 33 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (1 : 28)$ (0 : 13), (0 14 infty 0 nil ((1 28) (0 13))) + key: 18, s$$ (1 : 29)$ (0 : 14), (0 14 infty 0 nil ((1 29) (0 14))) + key: 19, $$ (0 : 15), (0 15 infty 0 nil ((0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 33 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (1 : 28)$ (0 : 13), (0 14 infty 0 nil ((1 28) (0 13))) + key: 18, s$$ (1 : 29)$ (0 : 14), (0 14 infty 0 nil ((1 29) (0 14))) + key: 19, $$ (1 : 30)$ (0 : 15), (0 15 infty 0 nil ((1 30) (0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) +Generalized suffix tree for: ido-completions, , url-file-name-all-completions, : +root + key: 14, i, (0 0 1 7 ((108 . 27) (100 . 2) (111 . 15)) nil) + key: 15, ons$$ (1 : 25)$ (0 : 11), (0 12 infty 0 nil ((1 25) (0 11))) + key: 2, do-completions$$ (0 : 0), (0 1 infty 0 nil ((0 0))) + key: 27, le-name-all-completions$$ (1 : 5), (1 6 infty 0 nil ((1 5))) + key: 3, do-completions$$ (0 : 1), (0 1 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 36 ((110 . 16) (45 . 4) (109 . 8)) nil) + key: 8, mpletions$$ (1 : 19)$ (0 : 5), (0 6 infty 0 nil ((1 19) (0 5))) + key: 4, -completions$$ (0 : 2), (0 3 infty 0 nil ((0 2))) + key: 16, ns$$ (1 : 26)$ (0 : 12), (0 13 infty 0 nil ((1 26) (0 12))) + key: 24, -, (0 3 4 1 ((97 . 40) (110 . 32) (99 . 5) (102 . 25)) nil) + key: 25, file-name-all-completions$$ (1 : 3), (1 4 infty 0 nil ((1 3))) + key: 5, completions$$ (1 : 17)$ (0 : 3), (0 4 infty 0 nil ((1 17) (0 3))) + key: 32, name-all-completions$$ (1 : 8), (1 9 infty 0 nil ((1 8))) + key: 40, all-completions$$ (1 : 13), (1 14 infty 0 nil ((1 13))) + key: 6, completions$$ (1 : 18)$ (0 : 4), (0 4 infty 0 nil ((1 18) (0 4))) + key: 36, m, (0 6 7 33 ((110 . 46) (112 . 9) (101 . 37)) nil) + key: 37, e-all-completions$$ (1 : 11), (1 12 infty 0 nil ((1 11))) + key: 9, pletions$$ (1 : 20)$ (0 : 6), (0 7 infty 0 nil ((1 20) (0 6))) + key: 46, $$ (1 : 27), (1 29 infty 0 nil ((1 27))) + key: 10, pletions$$ (1 : 21)$ (0 : 7), (0 7 infty 0 nil ((1 21) (0 7))) + key: 22, l, (0 8 9 1 ((108 . 43) (101 . 28) (45 . 44)) nil) + key: 44, -, (1 3 4 24 ((102 . 23) (99 . 45)) nil) + key: 45, completions$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 23, file-name-all-completions$$ (1 : 2), (1 4 infty 0 nil ((1 2))) + key: 28, e, (0 9 10 30 ((116 . 11) (45 . 29)) nil) + key: 29, -name-all-completions$$ (1 : 6), (1 8 infty 0 nil ((1 6))) + key: 11, tions$$ (1 : 22)$ (0 : 8), (0 10 infty 0 nil ((1 22) (0 8))) + key: 43, l-completions$$ (1 : 15), (1 16 infty 0 nil ((1 15))) + key: 30, e, (0 9 10 1 ((116 . 12) (45 . 38)) nil) + key: 38, -, (1 8 9 24 ((110 . 31) (97 . 39)) nil) + key: 39, all-completions$$ (1 : 12), (1 14 infty 0 nil ((1 12))) + key: 31, name-all-completions$$ (1 : 7), (1 9 infty 0 nil ((1 7))) + key: 12, tions$$ (1 : 23)$ (0 : 9), (0 10 infty 0 nil ((1 23) (0 9))) + key: 13, tions$$ (1 : 24)$ (0 : 10), (0 10 infty 0 nil ((1 24) (0 10))) + key: 33, n, (0 13 14 1 ((115 . 17) (97 . 34)) nil) + key: 34, ame-all-completions$$ (1 : 9), (1 10 infty 0 nil ((1 9))) + key: 17, s$$ (1 : 28)$ (0 : 13), (0 14 infty 0 nil ((1 28) (0 13))) + key: 18, s$$ (1 : 29)$ (0 : 14), (0 14 infty 0 nil ((1 29) (0 14))) + key: 19, $$ (1 : 30)$ (0 : 15), (0 15 infty 0 nil ((1 30) (0 15))) + key: 20, url-file-name-all-completions$$ (1 : 0), (1 0 infty 0 nil ((1 0))) + key: 21, rl-file-name-all-completions$$ (1 : 1), (1 1 infty 0 nil ((1 1))) + key: 26, file-name-all-completions$$ (1 : 4), (1 4 infty 0 nil ((1 4))) + key: 41, a, (1 10 11 1 ((109 . 35) (108 . 42)) nil) + key: 42, ll-completions$$ (1 : 14), (1 15 infty 0 nil ((1 14))) + key: 35, me-all-completions$$ (1 : 10), (1 11 infty 0 nil ((1 10))) + + +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 15 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 16 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 12 +active-node: 1 +active-edge-index: 18 +active-number: 1 +active-length: 11 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 1 +active-edge-index: 19 +active-number: 1 +active-length: 10 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 7 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 1 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 36 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 9 +active-node: 1 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 1 +active-edge-index: 22 +active-number: 1 +active-length: 7 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 22 +active-edge-index: 23 +active-number: 1 +active-length: 6 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 28 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 7 +active-node: 30 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 6 +active-node: 1 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 1 +active-edge-index: 25 +active-number: 1 +active-length: 4 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 14 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 1 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 7 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 1 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 33 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 1 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 1 +active-edge-index: 29 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + s$$ (1 : 28)$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 29 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 19 +active-edge-index: 18 +active-number: 1 +active-length: 12 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 18 +active-number: 1 +active-length: 12 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 1 +active-edge-index: 24 +active-number: 2 +active-length: 2 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t-completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 33 +active-edge-index: 25 +active-number: 2 +active-length: 1 +num: 2 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t-completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 1 +active-edge-index: 25 +active-number: 2 +active-length: 1 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 54 +active-edge-index: 26 +active-number: 2 +active-length: 0 +num: 2 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 1 +active-edge-index: 26 +active-number: 2 +active-length: 0 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + $$ (2 : 25) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 26 +active-number: 2 +active-length: 0 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + $$ (2 : 25) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (2 : 26)$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 19 +active-edge-index: 18 +active-number: 2 +active-length: 9 +num: 2 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + $$ (2 : 25) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (2 : 26)$ (1 : 29)$ (0 : 15) + $ (1 : 30) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 18 +active-number: 2 +active-length: 9 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + $$ (2 : 25) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (2 : 26)$ (1 : 29)$ (0 : 15) + $ (1 : 30) + $ (2 : 27) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) +Generalized suffix tree for: ido-completions, , url-file-name-all-completions, , comint-completion-at-point, : +root + i + on + -at-point$$ (2 : 14) + s$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + nt + $$ (2 : 23) + -completion-at-point$$ (2 : 3) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + n + -at-point$$ (2 : 15) + s$$ (1 : 26)$ (0 : 12) + int$$ (2 : 22) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + a + t-point$$ (2 : 17) + ll-completions$$ (1 : 13) + point$$ (2 : 20) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + int-completion-at-point$$ (2 : 2) + p + oint$$ (2 : 21) + letion + -at-point$$ (2 : 10) + s$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tion + -at-point$$ (2 : 11) + s$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tion + -at-point$$ (2 : 12) + s$$ (1 : 23)$ (0 : 9) + t + - + point$$ (2 : 19) + completion-at-point$$ (2 : 5) + ion + -at-point$$ (2 : 13) + s$$ (1 : 24)$ (0 : 10) + $$ (2 : 25) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 27)$ (0 : 13) + t + $$ (2 : 24) + -completion-at-point$$ (2 : 4) + -at-point$$ (2 : 16) + s$$ (1 : 28)$ (0 : 14) + $$ (2 : 26)$ (1 : 29)$ (0 : 15) + $ (1 : 30) + $ (2 : 27) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + t-point$$ (2 : 18) + + + +Generalized suffix tree for: ido-completions, , comint-completion-at-point, , previous-completion, , completion-flex--make-flex-pattern, , eldoc-remove-command-completions, , completion-pcm--filename-try-filter, , completion--string-equal-p, , completion-pcm--merge-completions, , file-name-completion, , ido-setup-completion-map, : +root + key: 14, i, (0 0 1 1 ((108 . 205) (110 . 229) (100 . 297) (111 . 71)) nil) + key: 71, o, (0 12 13 7 ((110 . 47) (117 . 72)) nil) + key: 72, us-completion$$ (2 : 4), (2 6 infty 0 nil ((2 4))) + key: 47, n, (0 13 14 49 ((-1 . 85) (115 . 15) (45 . 102)) nil) + key: 102, -, (1 17 18 104 ((109 . 320) (45 . 220) (112 . 256) (97 . 48) (102 . 103)) nil) + key: 103, flex--make-flex-pattern$$ (3 : 7), (3 11 infty 0 nil ((3 7))) + key: 48, at-point$$ (1 : 14), (1 18 infty 0 nil ((1 14))) + key: 256, pcm--, (5 11 16 258 ((102 . 177) (109 . 257)) nil) + key: 257, merge-completions$$ (7 : 7), (7 16 infty 0 nil ((7 7))) + key: 177, filename-try-filter$$ (5 : 7), (5 16 infty 0 nil ((5 7))) + key: 220, -string-equal-p$$ (6 : 7), (6 11 infty 0 nil ((6 7))) + key: 320, map$$ (9 : 17), (9 21 infty 0 nil ((9 17))) + key: 15, s$$ (7 : 29)$ (4 : 28)$ (0 : 11), (0 14 infty 0 nil ((7 29) (4 28) (0 11))) + key: 85, $$ (8 : 17)$ (2 : 16), (2 19 infty 0 nil ((8 17) (2 16))) + key: 297, do-, (0 1 4 299 ((99 . 2) (115 . 298)) nil) + key: 298, setup-completion-map$$ (9 : 0), (9 4 infty 0 nil ((9 0))) + key: 2, completions$$ (0 : 0), (0 4 infty 0 nil ((0 0))) + key: 229, n, (1 4 5 27 ((116 . 61) (103 . 230)) nil) + key: 230, g-equal-p$$ (6 : 15), (6 17 infty 0 nil ((6 15))) + key: 61, t, (1 5 6 63 ((45 . 26) (-1 . 62)) nil) + key: 62, $$ (1 : 23), (1 26 infty 0 nil ((1 23))) + key: 26, -completion-at-point$$ (1 : 3), (1 6 infty 0 nil ((1 3))) + key: 205, l, (5 18 19 142 ((101 . 284) (116 . 206)) nil) + key: 206, ter$$ (5 : 30), (5 32 infty 0 nil ((5 30))) + key: 284, e, (5 19 20 110 ((110 . 190) (45 . 285)) nil) + key: 285, -name-completion$$ (8 : 1), (8 4 infty 0 nil ((8 1))) + key: 190, name-try-filter$$ (5 : 17), (5 20 infty 0 nil ((5 17))) + key: 168, d, (0 1 2 1 ((111 . 144) (45 . 169)) nil) + key: 169, -completions$$ (4 : 19), (4 20 infty 0 nil ((4 19))) + key: 144, o, (0 2 3 7 ((45 . 299) (99 . 145)) nil) + key: 145, c-remove-command-completions$$ (4 : 2), (4 4 infty 0 nil ((4 2))) + key: 299, -, (0 3 4 301 ((99 . 3) (115 . 300)) nil) + key: 300, setup-completion-map$$ (9 : 1), (9 4 infty 0 nil ((9 1))) + key: 3, completions$$ (0 : 1), (0 4 infty 0 nil ((0 1))) + key: 7, o, (0 2 3 1 ((118 . 154) (99 . 146) (117 . 73) (105 . 60) (110 . 49) (45 . 301) (109 . 22)) nil) + key: 22, m, (0 6 7 24 ((109 . 162) (112 . 35) (105 . 23)) nil) + key: 23, int-completion-at-point$$ (1 : 1), (1 3 infty 0 nil ((1 1))) + key: 35, pletion, (0 7 14 37 ((-1 . 79) (115 . 8) (45 . 90)) nil) + key: 90, -, (1 17 18 92 ((109 . 314) (45 . 214) (112 . 244) (97 . 36) (102 . 91)) nil) + key: 91, flex--make-flex-pattern$$ (3 : 1), (3 11 infty 0 nil ((3 1))) + key: 36, at-point$$ (1 : 8), (1 18 infty 0 nil ((1 8))) + key: 244, pcm--, (5 11 16 246 ((102 . 171) (109 . 245)) nil) + key: 245, merge-completions$$ (7 : 1), (7 16 infty 0 nil ((7 1))) + key: 171, filename-try-filter$$ (5 : 1), (5 16 infty 0 nil ((5 1))) + key: 214, -string-equal-p$$ (6 : 1), (6 11 infty 0 nil ((6 1))) + key: 314, map$$ (9 : 11), (9 21 infty 0 nil ((9 11))) + key: 8, s$$ (7 : 23)$ (4 : 22)$ (0 : 5), (0 14 infty 0 nil ((7 23) (4 22) (0 5))) + key: 79, $$ (8 : 11)$ (2 : 10), (2 19 infty 0 nil ((8 11) (2 10))) + key: 162, mand-completions$$ (4 : 14), (4 16 infty 0 nil ((4 14))) + key: 301, -, (0 3 4 52 ((99 . 4) (115 . 302)) nil) + key: 302, setup-completion-map$$ (9 : 2), (9 4 infty 0 nil ((9 2))) + key: 4, completions$$ (0 : 2), (0 4 infty 0 nil ((0 2))) + key: 49, n, (0 13 14 27 ((-1 . 86) (115 . 16) (45 . 104)) nil) + key: 104, -, (1 17 18 106 ((109 . 321) (45 . 221) (112 . 258) (97 . 50) (102 . 105)) nil) + key: 105, flex--make-flex-pattern$$ (3 : 8), (3 11 infty 0 nil ((3 8))) + key: 50, at-point$$ (1 : 15), (1 18 infty 0 nil ((1 15))) + key: 258, pcm--, (5 11 16 260 ((102 . 178) (109 . 259)) nil) + key: 259, merge-completions$$ (7 : 8), (7 16 infty 0 nil ((7 8))) + key: 178, filename-try-filter$$ (5 : 8), (5 16 infty 0 nil ((5 8))) + key: 221, -string-equal-p$$ (6 : 8), (6 11 infty 0 nil ((6 8))) + key: 321, map$$ (9 : 18), (9 21 infty 0 nil ((9 18))) + key: 16, s$$ (7 : 30)$ (4 : 29)$ (0 : 12), (0 14 infty 0 nil ((7 30) (4 29) (0 12))) + key: 86, $$ (8 : 18)$ (2 : 17), (2 19 infty 0 nil ((8 18) (2 17))) + key: 60, int$$ (1 : 22), (1 23 infty 0 nil ((1 22))) + key: 73, us-completion$$ (2 : 5), (2 6 infty 0 nil ((2 5))) + key: 146, c-remove-command-completions$$ (4 : 3), (4 4 infty 0 nil ((4 3))) + key: 154, ve-command-completions$$ (4 : 9), (4 10 infty 0 nil ((4 9))) + key: 52, -, (0 3 4 1 ((110 . 288) (101 . 233) (115 . 303) (116 . 197) (114 . 149) (109 . 272) (45 . 184) (102 . 186) (112 . 131) (99 . 159) (97 . 53)) nil) + key: 53, at-point$$ (1 : 17), (1 18 infty 0 nil ((1 17))) + key: 159, com, (0 4 7 20 ((112 . 31) (109 . 160)) nil) + key: 160, mand-completions$$ (4 : 12), (4 16 infty 0 nil ((4 12))) + key: 31, pletion, (0 7 14 33 ((-1 . 77) (115 . 5) (45 . 311)) nil) + key: 311, -, (1 17 18 88 ((97 . 32) (109 . 312)) nil) + key: 312, map$$ (9 : 9), (9 21 infty 0 nil ((9 9))) + key: 32, at-point$$ (1 : 6), (1 18 infty 0 nil ((1 6))) + key: 5, s$$ (7 : 21)$ (4 : 20)$ (0 : 3), (0 14 infty 0 nil ((7 21) (4 20) (0 3))) + key: 77, $$ (8 : 9)$ (2 : 8), (2 19 infty 0 nil ((8 9) (2 8))) + key: 131, p, (1 21 22 58 ((-1 . 240) (99 . 262) (111 . 57) (97 . 132)) nil) + key: 132, attern$$ (3 : 26), (3 28 infty 0 nil ((3 26))) + key: 57, oint$$ (1 : 20), (1 22 infty 0 nil ((1 20))) + key: 262, cm--, (5 12 16 264 ((102 . 180) (109 . 263)) nil) + key: 263, merge-completions$$ (7 : 10), (7 16 infty 0 nil ((7 10))) + key: 180, filename-try-filter$$ (5 : 10), (5 16 infty 0 nil ((5 10))) + key: 240, $$ (6 : 24), (6 26 infty 0 nil ((6 24))) + key: 186, f, (3 11 12 188 ((108 . 121) (105 . 201)) nil) + key: 201, il, (5 17 19 203 ((101 . 187) (116 . 202)) nil) + key: 202, ter$$ (5 : 28), (5 32 infty 0 nil ((5 28))) + key: 187, ename-try-filter$$ (5 : 15), (5 19 infty 0 nil ((5 15))) + key: 121, lex-, (3 12 16 123 ((45 . 108) (112 . 122)) nil) + key: 122, pattern$$ (3 : 21), (3 27 infty 0 nil ((3 21))) + key: 108, -make-flex-pattern$$ (3 : 10), (3 16 infty 0 nil ((3 10))) + key: 184, -, (3 16 17 52 ((115 . 223) (109 . 270) (102 . 185)) nil) + key: 185, filename-try-filter$$ (5 : 14), (5 16 infty 0 nil ((5 14))) + key: 270, m, (3 17 18 272 ((97 . 114) (101 . 271)) nil) + key: 271, erge-completions$$ (7 : 14), (7 17 infty 0 nil ((7 14))) + key: 114, ake-flex-pattern$$ (3 : 15), (3 18 infty 0 nil ((3 15))) + key: 223, string-equal-p$$ (6 : 10), (6 12 infty 0 nil ((6 10))) + key: 272, m, (3 17 18 24 ((97 . 323) (101 . 273)) nil) + key: 273, erge-completions$$ (7 : 15), (7 17 infty 0 nil ((7 15))) + key: 323, a, (3 18 19 164 ((107 . 115) (112 . 324)) nil) + key: 324, p$$ (9 : 20), (9 23 infty 0 nil ((9 20))) + key: 115, ke-flex-pattern$$ (3 : 16), (3 19 infty 0 nil ((3 16))) + key: 149, remove-command-completions$$ (4 : 5), (4 6 infty 0 nil ((4 5))) + key: 197, try-filter$$ (5 : 24), (5 25 infty 0 nil ((5 24))) + key: 303, s, (6 12 13 75 ((116 . 224) (101 . 304)) nil) + key: 304, etup-completion-map$$ (9 : 3), (9 5 infty 0 nil ((9 3))) + key: 224, tring-equal-p$$ (6 : 11), (6 13 infty 0 nil ((6 11))) + key: 233, equal-p$$ (6 : 18), (6 19 infty 0 nil ((6 18))) + key: 288, name-completion$$ (8 : 4), (8 5 infty 0 nil ((8 4))) + key: 147, c, (0 4 5 1 ((109 . 266) (111 . 20) (45 . 148)) nil) + key: 148, -remove-command-completions$$ (4 : 4), (4 5 infty 0 nil ((4 4))) + key: 20, om, (0 5 7 22 ((109 . 161) (112 . 33) (105 . 21)) nil) + key: 21, int-completion-at-point$$ (1 : 0), (1 3 infty 0 nil ((1 0))) + key: 33, pletion, (0 7 14 35 ((-1 . 78) (115 . 6) (45 . 88)) nil) + key: 88, -, (1 17 18 90 ((109 . 313) (45 . 213) (112 . 242) (97 . 34) (102 . 89)) nil) + key: 89, flex--make-flex-pattern$$ (3 : 0), (3 11 infty 0 nil ((3 0))) + key: 34, at-point$$ (1 : 7), (1 18 infty 0 nil ((1 7))) + key: 242, pcm--, (5 11 16 244 ((102 . 170) (109 . 243)) nil) + key: 243, merge-completions$$ (7 : 0), (7 16 infty 0 nil ((7 0))) + key: 170, filename-try-filter$$ (5 : 0), (5 16 infty 0 nil ((5 0))) + key: 213, -string-equal-p$$ (6 : 0), (6 11 infty 0 nil ((6 0))) + key: 313, map$$ (9 : 10), (9 21 infty 0 nil ((9 10))) + key: 6, s$$ (7 : 22)$ (4 : 21)$ (0 : 4), (0 14 infty 0 nil ((7 22) (4 21) (0 4))) + key: 78, $$ (8 : 10)$ (2 : 9), (2 19 infty 0 nil ((8 10) (2 9))) + key: 161, mand-completions$$ (4 : 13), (4 16 infty 0 nil ((4 13))) + key: 266, m--, (5 13 16 268 ((102 . 182) (109 . 267)) nil) + key: 267, merge-completions$$ (7 : 12), (7 16 infty 0 nil ((7 12))) + key: 182, filename-try-filter$$ (5 : 12), (5 16 infty 0 nil ((5 12))) + key: 24, m, (0 6 7 1 ((101 . 274) (45 . 268) (109 . 163) (111 . 153) (97 . 164) (112 . 37) (105 . 25)) nil) + key: 25, int-completion-at-point$$ (1 : 2), (1 3 infty 0 nil ((1 2))) + key: 37, pletion, (0 7 14 39 ((-1 . 80) (115 . 9) (45 . 92)) nil) + key: 92, -, (1 17 18 94 ((109 . 315) (45 . 215) (112 . 246) (97 . 38) (102 . 93)) nil) + key: 93, flex--make-flex-pattern$$ (3 : 2), (3 11 infty 0 nil ((3 2))) + key: 38, at-point$$ (1 : 9), (1 18 infty 0 nil ((1 9))) + key: 246, pcm--, (5 11 16 248 ((102 . 172) (109 . 247)) nil) + key: 247, merge-completions$$ (7 : 2), (7 16 infty 0 nil ((7 2))) + key: 172, filename-try-filter$$ (5 : 2), (5 16 infty 0 nil ((5 2))) + key: 215, -string-equal-p$$ (6 : 2), (6 11 infty 0 nil ((6 2))) + key: 315, map$$ (9 : 12), (9 21 infty 0 nil ((9 12))) + key: 9, s$$ (7 : 24)$ (4 : 23)$ (0 : 6), (0 14 infty 0 nil ((7 24) (4 23) (0 6))) + key: 80, $$ (8 : 12)$ (2 : 11), (2 19 infty 0 nil ((8 12) (2 11))) + key: 164, a, (3 18 19 117 ((112 . 325) (107 . 116) (110 . 165)) nil) + key: 165, nd-completions$$ (4 : 16), (4 18 infty 0 nil ((4 16))) + key: 116, ke-flex-pattern$$ (3 : 17), (3 19 infty 0 nil ((3 17))) + key: 325, p$$ (9 : 21), (9 23 infty 0 nil ((9 21))) + key: 153, ove-command-completions$$ (4 : 8), (4 9 infty 0 nil ((4 8))) + key: 163, mand-completions$$ (4 : 15), (4 16 infty 0 nil ((4 15))) + key: 268, --, (5 14 16 184 ((102 . 183) (109 . 269)) nil) + key: 269, merge-completions$$ (7 : 13), (7 16 infty 0 nil ((7 13))) + key: 183, filename-try-filter$$ (5 : 13), (5 16 infty 0 nil ((5 13))) + key: 274, e, (5 23 24 68 ((45 . 293) (114 . 275)) nil) + key: 275, rge-completions$$ (7 : 16), (7 18 infty 0 nil ((7 16))) + key: 293, -, (5 24 25 157 ((116 . 195) (99 . 294)) nil) + key: 294, completion$$ (8 : 7), (8 10 infty 0 nil ((8 7))) + key: 195, try-filter$$ (5 : 22), (5 25 infty 0 nil ((5 22))) + key: 58, p, (0 7 8 1 ((45 . 310) (-1 . 241) (99 . 264) (97 . 133) (114 . 66) (108 . 39) (111 . 59)) nil) + key: 59, oint$$ (1 : 21), (1 22 infty 0 nil ((1 21))) + key: 39, letion, (0 8 14 41 ((-1 . 81) (115 . 10) (45 . 94)) nil) + key: 94, -, (1 17 18 96 ((109 . 316) (45 . 216) (112 . 248) (97 . 40) (102 . 95)) nil) + key: 95, flex--make-flex-pattern$$ (3 : 3), (3 11 infty 0 nil ((3 3))) + key: 40, at-point$$ (1 : 10), (1 18 infty 0 nil ((1 10))) + key: 248, pcm--, (5 11 16 250 ((102 . 173) (109 . 249)) nil) + key: 249, merge-completions$$ (7 : 3), (7 16 infty 0 nil ((7 3))) + key: 173, filename-try-filter$$ (5 : 3), (5 16 infty 0 nil ((5 3))) + key: 216, -string-equal-p$$ (6 : 3), (6 11 infty 0 nil ((6 3))) + key: 316, map$$ (9 : 13), (9 21 infty 0 nil ((9 13))) + key: 10, s$$ (7 : 25)$ (4 : 24)$ (0 : 7), (0 14 infty 0 nil ((7 25) (4 24) (0 7))) + key: 81, $$ (8 : 13)$ (2 : 12), (2 19 infty 0 nil ((8 13) (2 12))) + key: 66, revious-completion$$ (2 : 0), (2 1 infty 0 nil ((2 0))) + key: 133, attern$$ (3 : 27), (3 28 infty 0 nil ((3 27))) + key: 264, cm--, (5 12 16 266 ((102 . 181) (109 . 265)) nil) + key: 265, merge-completions$$ (7 : 11), (7 16 infty 0 nil ((7 11))) + key: 181, filename-try-filter$$ (5 : 11), (5 16 infty 0 nil ((5 11))) + key: 241, $$ (9 : 23)$ (6 : 25), (6 26 infty 0 nil ((9 23) (6 25))) + key: 310, -completion-map$$ (9 : 8), (9 9 infty 0 nil ((9 8))) + key: 142, l, (0 8 9 1 ((45 . 239) (116 . 207) (101 . 110) (100 . 143)) nil) + key: 143, doc-remove-command-completions$$ (4 : 1), (4 2 infty 0 nil ((4 1))) + key: 110, e, (0 9 10 68 ((45 . 286) (110 . 191) (116 . 41) (120 . 125)) nil) + key: 125, x-, (3 14 16 127 ((45 . 111) (112 . 126)) nil) + key: 126, pattern$$ (3 : 23), (3 27 infty 0 nil ((3 23))) + key: 111, -make-flex-pattern$$ (3 : 12), (3 16 infty 0 nil ((3 12))) + key: 41, tion, (0 10 14 43 ((-1 . 82) (115 . 11) (45 . 96)) nil) + key: 96, -, (1 17 18 98 ((109 . 317) (45 . 217) (112 . 250) (97 . 42) (102 . 97)) nil) + key: 97, flex--make-flex-pattern$$ (3 : 4), (3 11 infty 0 nil ((3 4))) + key: 42, at-point$$ (1 : 11), (1 18 infty 0 nil ((1 11))) + key: 250, pcm--, (5 11 16 252 ((102 . 174) (109 . 251)) nil) + key: 251, merge-completions$$ (7 : 4), (7 16 infty 0 nil ((7 4))) + key: 174, filename-try-filter$$ (5 : 4), (5 16 infty 0 nil ((5 4))) + key: 217, -string-equal-p$$ (6 : 4), (6 11 infty 0 nil ((6 4))) + key: 317, map$$ (9 : 14), (9 21 infty 0 nil ((9 14))) + key: 11, s$$ (7 : 26)$ (4 : 25)$ (0 : 8), (0 14 infty 0 nil ((7 26) (4 25) (0 8))) + key: 82, $$ (8 : 14)$ (2 : 13), (2 19 infty 0 nil ((8 14) (2 13))) + key: 191, name-try-filter$$ (5 : 18), (5 20 infty 0 nil ((5 18))) + key: 286, -name-completion$$ (8 : 2), (8 4 infty 0 nil ((8 2))) + key: 207, ter$$ (5 : 31), (5 32 infty 0 nil ((5 31))) + key: 239, -p$$ (6 : 23), (6 24 infty 0 nil ((6 23))) + key: 68, e, (0 9 10 1 ((113 . 234) (110 . 192) (109 . 152) (108 . 141) (114 . 210) (45 . 157) (120 . 127) (116 . 306) (118 . 69)) nil) + key: 69, vious-completion$$ (2 : 2), (2 3 infty 0 nil ((2 2))) + key: 306, t, (0 10 11 29 ((105 . 43) (117 . 307)) nil) + key: 307, up-completion-map$$ (9 : 5), (9 7 infty 0 nil ((9 5))) + key: 43, ion, (0 11 14 45 ((-1 . 83) (115 . 12) (45 . 98)) nil) + key: 98, -, (1 17 18 100 ((109 . 318) (45 . 218) (112 . 252) (97 . 44) (102 . 99)) nil) + key: 99, flex--make-flex-pattern$$ (3 : 5), (3 11 infty 0 nil ((3 5))) + key: 44, at-point$$ (1 : 12), (1 18 infty 0 nil ((1 12))) + key: 252, pcm--, (5 11 16 254 ((102 . 175) (109 . 253)) nil) + key: 253, merge-completions$$ (7 : 5), (7 16 infty 0 nil ((7 5))) + key: 175, filename-try-filter$$ (5 : 5), (5 16 infty 0 nil ((5 5))) + key: 218, -string-equal-p$$ (6 : 5), (6 11 infty 0 nil ((6 5))) + key: 318, map$$ (9 : 15), (9 21 infty 0 nil ((9 15))) + key: 12, s$$ (7 : 27)$ (4 : 26)$ (0 : 9), (0 14 infty 0 nil ((7 27) (4 26) (0 9))) + key: 83, $$ (8 : 15)$ (2 : 14), (2 19 infty 0 nil ((8 15) (2 14))) + key: 127, x-, (3 14 16 129 ((45 . 112) (112 . 128)) nil) + key: 128, pattern$$ (3 : 24), (3 27 infty 0 nil ((3 24))) + key: 112, -make-flex-pattern$$ (3 : 13), (3 16 infty 0 nil ((3 13))) + key: 157, -, (3 21 22 52 ((110 . 287) (116 . 196) (102 . 120) (99 . 280)) nil) + key: 280, com, (4 13 16 159 ((109 . 158) (112 . 295)) nil) + key: 295, pletion, (7 25 32 31 ((115 . 281) (-1 . 296)) nil) + key: 296, $$ (8 : 8), (8 20 infty 0 nil ((8 8))) + key: 281, s$$ (7 : 20), (7 32 infty 0 nil ((7 20))) + key: 158, mand-completions$$ (4 : 11), (4 16 infty 0 nil ((4 11))) + key: 120, flex-pattern$$ (3 : 20), (3 22 infty 0 nil ((3 20))) + key: 196, try-filter$$ (5 : 23), (5 25 infty 0 nil ((5 23))) + key: 287, name-completion$$ (8 : 3), (8 5 infty 0 nil ((8 3))) + key: 210, r, (3 32 33 139 ((103 . 276) (110 . 138) (-1 . 211)) nil) + key: 211, $$ (5 : 33), (5 35 infty 0 nil ((5 33))) + key: 138, n$$ (3 : 31), (3 33 infty 0 nil ((3 31))) + key: 276, ge-completions$$ (7 : 17), (7 19 infty 0 nil ((7 17))) + key: 141, ldoc-remove-command-completions$$ (4 : 0), (4 1 infty 0 nil ((4 0))) + key: 152, move-command-completions$$ (4 : 7), (4 8 infty 0 nil ((4 7))) + key: 192, name-try-filter$$ (5 : 19), (5 20 infty 0 nil ((5 19))) + key: 234, qual-p$$ (6 : 19), (6 20 infty 0 nil ((6 19))) + key: 29, t, (0 10 11 1 ((117 . 308) (114 . 226) (101 . 208) (116 . 136) (-1 . 65) (105 . 45) (45 . 55)) nil) + key: 55, -, (1 6 7 52 ((99 . 30) (112 . 56)) nil) + key: 56, point$$ (1 : 19), (1 21 infty 0 nil ((1 19))) + key: 30, completion-at-point$$ (1 : 5), (1 7 infty 0 nil ((1 5))) + key: 45, ion, (0 11 14 47 ((-1 . 84) (115 . 13) (45 . 100)) nil) + key: 100, -, (1 17 18 102 ((109 . 319) (45 . 219) (112 . 254) (97 . 46) (102 . 101)) nil) + key: 101, flex--make-flex-pattern$$ (3 : 6), (3 11 infty 0 nil ((3 6))) + key: 46, at-point$$ (1 : 13), (1 18 infty 0 nil ((1 13))) + key: 254, pcm--, (5 11 16 256 ((102 . 176) (109 . 255)) nil) + key: 255, merge-completions$$ (7 : 6), (7 16 infty 0 nil ((7 6))) + key: 176, filename-try-filter$$ (5 : 6), (5 16 infty 0 nil ((5 6))) + key: 219, -string-equal-p$$ (6 : 6), (6 11 infty 0 nil ((6 6))) + key: 319, map$$ (9 : 16), (9 21 infty 0 nil ((9 16))) + key: 13, s$$ (7 : 28)$ (4 : 27)$ (0 : 10), (0 14 infty 0 nil ((7 28) (4 27) (0 10))) + key: 84, $$ (8 : 16)$ (2 : 15), (2 19 infty 0 nil ((8 16) (2 15))) + key: 65, $$ (1 : 25), (1 26 infty 0 nil ((1 25))) + key: 136, tern$$ (3 : 29), (3 30 infty 0 nil ((3 29))) + key: 208, er, (3 31 33 210 ((110 . 137) (-1 . 209)) nil) + key: 209, $$ (5 : 32), (5 35 infty 0 nil ((5 32))) + key: 137, n$$ (3 : 30), (3 33 infty 0 nil ((3 30))) + key: 226, r, (5 26 27 139 ((121 . 198) (105 . 227)) nil) + key: 227, ing-equal-p$$ (6 : 13), (6 15 infty 0 nil ((6 13))) + key: 198, y-filter$$ (5 : 25), (5 27 infty 0 nil ((5 25))) + key: 308, up-completion-map$$ (9 : 6), (9 7 infty 0 nil ((9 6))) + key: 27, n, (0 13 14 1 ((103 . 231) (97 . 289) (100 . 167) (-1 . 87) (45 . 106) (115 . 17) (116 . 63)) nil) + key: 63, t, (1 5 6 29 ((45 . 28) (-1 . 64)) nil) + key: 64, $$ (1 : 24), (1 26 infty 0 nil ((1 24))) + key: 28, -completion-at-point$$ (1 : 4), (1 6 infty 0 nil ((1 4))) + key: 17, s$$ (7 : 31)$ (4 : 30)$ (0 : 13), (0 14 infty 0 nil ((7 31) (4 30) (0 13))) + key: 106, -, (1 17 18 52 ((109 . 322) (45 . 222) (112 . 260) (97 . 51) (102 . 107)) nil) + key: 107, flex--make-flex-pattern$$ (3 : 9), (3 11 infty 0 nil ((3 9))) + key: 51, at-point$$ (1 : 16), (1 18 infty 0 nil ((1 16))) + key: 260, pcm--, (5 11 16 262 ((102 . 179) (109 . 261)) nil) + key: 261, merge-completions$$ (7 : 9), (7 16 infty 0 nil ((7 9))) + key: 179, filename-try-filter$$ (5 : 9), (5 16 infty 0 nil ((5 9))) + key: 222, -string-equal-p$$ (6 : 9), (6 11 infty 0 nil ((6 9))) + key: 322, map$$ (9 : 19), (9 21 infty 0 nil ((9 19))) + key: 87, $$ (8 : 19)$ (3 : 33)$ (2 : 18), (2 19 infty 0 nil ((8 19) (3 33) (2 18))) + key: 167, d-completions$$ (4 : 18), (4 19 infty 0 nil ((4 18))) + key: 289, ame-, (5 21 25 291 ((116 . 193) (99 . 290)) nil) + key: 290, completion$$ (8 : 5), (8 10 infty 0 nil ((8 5))) + key: 193, try-filter$$ (5 : 20), (5 25 infty 0 nil ((5 20))) + key: 231, g-equal-p$$ (6 : 16), (6 17 infty 0 nil ((6 16))) + key: 75, s, (0 14 15 1 ((101 . 305) (116 . 225) (-1 . 18) (45 . 76)) nil) + key: 76, -completion$$ (2 : 7), (2 8 infty 0 nil ((2 7))) + key: 18, $$ (7 : 32)$ (4 : 31)$ (0 : 14), (0 15 infty 0 nil ((7 32) (4 31) (0 14))) + key: 225, tring-equal-p$$ (6 : 12), (6 13 infty 0 nil ((6 12))) + key: 305, etup-completion-map$$ (9 : 4), (9 5 infty 0 nil ((9 4))) + key: 19, $$ (9 : 24)$ (8 : 20)$ (7 : 33)$ (6 : 26)$ (5 : 35)$ (4 : 32)$ (3 : 34)$ (2 : 19)$ (1 : 26)$ (0 : 15), (0 15 infty 0 nil ((9 24) (8 20) (7 33) (6 26) (5 35) (4 32) (3 34) (2 19) (1 26) (0 15))) + key: 117, a, (1 18 19 1 ((112 . 326) (108 . 238) (109 . 291) (110 . 166) (116 . 134) (107 . 118)) nil) + key: 118, ke-flex-pattern$$ (3 : 18), (3 19 infty 0 nil ((3 18))) + key: 134, t, (1 19 20 29 ((45 . 54) (116 . 135)) nil) + key: 135, tern$$ (3 : 28), (3 30 infty 0 nil ((3 28))) + key: 54, -point$$ (1 : 18), (1 20 infty 0 nil ((1 18))) + key: 166, nd-completions$$ (4 : 17), (4 18 infty 0 nil ((4 17))) + key: 291, me-, (5 22 25 293 ((116 . 194) (99 . 292)) nil) + key: 292, completion$$ (8 : 6), (8 10 infty 0 nil ((8 6))) + key: 194, try-filter$$ (5 : 21), (5 25 infty 0 nil ((5 21))) + key: 238, l-p$$ (6 : 22), (6 23 infty 0 nil ((6 22))) + key: 326, p$$ (9 : 22), (9 23 infty 0 nil ((9 22))) + key: 139, r, (2 1 2 1 ((103 . 277) (105 . 228) (-1 . 212) (121 . 199) (101 . 150) (110 . 140)) nil) + key: 140, n$$ (3 : 32), (3 33 infty 0 nil ((3 32))) + key: 150, e, (2 2 3 68 ((118 . 67) (109 . 151)) nil) + key: 151, move-command-completions$$ (4 : 6), (4 8 infty 0 nil ((4 6))) + key: 67, vious-completion$$ (2 : 1), (2 3 infty 0 nil ((2 1))) + key: 199, y-filter$$ (5 : 26), (5 27 infty 0 nil ((5 26))) + key: 212, $$ (5 : 34), (5 35 infty 0 nil ((5 34))) + key: 228, ing-equal-p$$ (6 : 14), (6 15 infty 0 nil ((6 14))) + key: 277, ge-completions$$ (7 : 18), (7 19 infty 0 nil ((7 18))) + key: 155, v, (2 3 4 1 ((105 . 70) (101 . 156)) nil) + key: 156, e-command-completions$$ (4 : 10), (4 11 infty 0 nil ((4 10))) + key: 70, ious-completion$$ (2 : 3), (2 4 infty 0 nil ((2 3))) + key: 236, u, (2 6 7 1 ((112 . 309) (115 . 74) (97 . 237)) nil) + key: 237, al-p$$ (6 : 21), (6 22 infty 0 nil ((6 21))) + key: 74, s-completion$$ (2 : 6), (2 7 infty 0 nil ((2 6))) + key: 309, p-completion-map$$ (9 : 7), (9 8 infty 0 nil ((9 7))) + key: 188, f, (3 11 12 1 ((108 . 123) (105 . 203)) nil) + key: 203, il, (5 17 19 205 ((101 . 282) (116 . 204)) nil) + key: 204, ter$$ (5 : 29), (5 32 infty 0 nil ((5 29))) + key: 282, e, (5 19 20 284 ((110 . 189) (45 . 283)) nil) + key: 283, -name-completion$$ (8 : 0), (8 4 infty 0 nil ((8 0))) + key: 189, name-try-filter$$ (5 : 16), (5 20 infty 0 nil ((5 16))) + key: 123, lex-, (3 12 16 125 ((45 . 109) (112 . 124)) nil) + key: 124, pattern$$ (3 : 22), (3 27 infty 0 nil ((3 22))) + key: 109, -make-flex-pattern$$ (3 : 11), (3 16 infty 0 nil ((3 11))) + key: 129, x-, (3 14 16 52 ((45 . 113) (112 . 130)) nil) + key: 130, pattern$$ (3 : 25), (3 27 infty 0 nil ((3 25))) + key: 113, -make-flex-pattern$$ (3 : 14), (3 16 infty 0 nil ((3 14))) + key: 119, ke-flex-pattern$$ (3 : 19), (3 19 infty 0 nil ((3 19))) + key: 200, y-filter$$ (5 : 27), (5 27 infty 0 nil ((5 27))) + key: 278, g, (6 17 18 1 ((45 . 232) (101 . 279)) nil) + key: 279, e-completions$$ (7 : 19), (7 20 infty 0 nil ((7 19))) + key: 232, -equal-p$$ (6 : 17), (6 18 infty 0 nil ((6 17))) + key: 235, qual-p$$ (6 : 20), (6 20 infty 0 nil ((6 20))) diff --git a/suffix tree/gst test ground (2).txt b/suffix tree/gst test ground (2).txt index 98f82f2..84d618e 100644 --- a/suffix tree/gst test ground (2).txt +++ b/suffix tree/gst test ground (2).txt @@ -178,3 +178,1544 @@ root ttern$ (4 : 28) vious-completion$ (3 : 3) x-pattern$ (4 : 25) + + +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 15 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 16 +active-number: 0 +active-length: 0 +num: 0 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + -completions$$ (0 : 3) + completions$$ (0 : 4) + mpletions$$ (0 : 6) + pletions$$ (0 : 7) + letions$$ (0 : 8) + etions$$ (0 : 9) + tions$$ (0 : 10) + ns$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 12 +active-node: 1 +active-edge-index: 18 +active-number: 1 +active-length: 11 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 1 +active-edge-index: 19 +active-number: 1 +active-length: 10 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 11 +active-node: 7 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 1 +active-edge-index: 20 +active-number: 1 +active-length: 9 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 10 +active-node: 36 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 9 +active-node: 1 +active-edge-index: 21 +active-number: 1 +active-length: 8 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 1 +active-edge-index: 22 +active-number: 1 +active-length: 7 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 22 +active-edge-index: 23 +active-number: 1 +active-length: 6 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 8 +active-node: 28 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 7 +active-node: 30 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 6 +active-node: 1 +active-edge-index: 24 +active-number: 1 +active-length: 5 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 1 +active-edge-index: 25 +active-number: 1 +active-length: 4 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 5 +active-node: 14 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 1 +active-edge-index: 26 +active-number: 1 +active-length: 3 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 4 +active-node: 7 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 3 +active-node: 36 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 1 +active-edge-index: 27 +active-number: 1 +active-length: 2 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 2 +active-node: 33 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: t +breakp: nil +terminating-no-split: nil +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 1 +active-node: 1 +active-edge-index: 28 +active-number: 1 +active-length: 1 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (1 : 29)$ (0 : 14) + $$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 1 +active-edge-index: 30 +active-number: 1 +active-length: 0 +num: 1 +continue-p: nil +breakp: nil +terminating-no-split: t +root + i + ons$$ (1 : 25)$ (0 : 11) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + mpletions$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + - + file-name-all-completions$$ (1 : 3) + completions$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + completions$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletions$$ (1 : 20)$ (0 : 6) + $$ (1 : 27) + pletions$$ (1 : 21)$ (0 : 7) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions$$ (1 : 23)$ (0 : 9) + tions$$ (1 : 24)$ (0 : 10) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 69 +active-edge-index: 15 +active-number: 2 +active-length: 3 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -point$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Extending terminating character +strs: ([105 100 111 45 99 111 109 112 108 101 ...] [117 114 108 45 102 105 108 101 45 110 ...] [99 111 109 105 110 116 45 99 111 109 ...]) +remain: 0 +active-node: 71 +active-edge-index: 15 +active-number: 2 +active-length: 3 +num: 2 +continue-p: nil +breakp: nil +terminating-no-split: nil +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -po + $ (2 : 27) + int$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) +Generalized suffix tree for: ido-completions, , url-file-name-all-completions, , comint-completion-at-point, : +root + i + ons + -at-point$$ (2 : 14) + $$ (1 : 25)$ (0 : 11) + point$$ (2 : 21) + do-completions$$ (0 : 0) + le-name-all-completions$$ (1 : 5) + do-completions$$ (0 : 1) + o + m + int-completion-at-point$$ (2 : 1) + pletion + -at-point$$ (2 : 8) + s$$ (1 : 19)$ (0 : 5) + -completions$$ (0 : 2) + ns$$ (1 : 26)$ (0 : 12) + -at + oint$$ (2 : 22) + -point$$ (2 : 15) + - + file-name-all-completions$$ (1 : 3) + completion + -at-point$$ (2 : 6) + s$$ (1 : 17)$ (0 : 3) + name-all-completions$$ (1 : 8) + all-completions$$ (1 : 13) + com + int-completion-at-point$$ (2 : 0) + pletion + -at-point$$ (2 : 7) + s$$ (1 : 18)$ (0 : 4) + m + e-all-completions$$ (1 : 11) + pletion + -at-point$$ (2 : 9) + s$$ (1 : 20)$ (0 : 6) + + nt-completion-at-point$$ (2 : 4) + $$ (1 : 27) + int-completion-at-point$$ (2 : 2) + -at + int$$ (2 : 23) + -point$$ (2 : 16) + pletion + -at-point$$ (2 : 11) + s$$ (1 : 21)$ (0 : 7) + at- + t$$ (2 : 25) + point$$ (2 : 18) + l + - + completions$$ (1 : 16) + file-name-all-completions$$ (1 : 2) + e + -name-all-completions$$ (1 : 6) + tions$$ (1 : 22)$ (0 : 8) + l-completions$$ (1 : 15) + e + - + all-completions$$ (1 : 12) + name-all-completions$$ (1 : 7) + tions + -at-point$$ (2 : 12) + $$ (1 : 23)$ (0 : 9) + t-p + $$ (2 : 26) + oint$$ (2 : 19) + tions + -at-point$$ (2 : 13) + $$ (1 : 24)$ (0 : 10) + -po + $ (2 : 27) + int$$ (2 : 20) + n + ame-all-completions$$ (1 : 9) + s$$ (1 : 28)$ (0 : 13) + int-completion-at-point$$ (2 : 3) + t-completion-at-point$$ (2 : 5) + -at-point$$ (2 : 10) + -at + nt$$ (2 : 24) + -point$$ (2 : 17) + s$$ (1 : 29)$ (0 : 14) + $$ (1 : 30)$ (0 : 15) + url-file-name-all-completions$$ (1 : 0) + rl-file-name-all-completions$$ (1 : 1) + file-name-all-completions$$ (1 : 4) + a + ll-completions$$ (1 : 14) + me-all-completions$$ (1 : 10) + + + + diff --git a/tab-conf.el b/tab-conf.el index f55259c..eb58fe1 100644 --- a/tab-conf.el +++ b/tab-conf.el @@ -6,6 +6,64 @@ (define-key tab-switcher-mode-map (vector ?p) 'tab-switcher-prev-or-last) (define-key tab-prefix-map (vector 'tab) 'tab-switcher) +(define-key global-map (vector ?\s-t) #'durand-switch-tab-dwim) + +;;;###autoload +(defun durand-switch-tab-dwim (&optional arg) + "Do what I mean if I want to switch tabs. + +If there is only one tab, or if ARG is '(4), create another one, +prompting me for the buffer to display in the new tab. + +If there are two tabs and ARG is not '(4) or '(16), just switch +between them. + +If there are more than two tabs and if ARG is not '(4) or '(16), +then use complting-read to ask for a tab to switch to. + +If ARG is '(16), then use completing-read to ask for a tab to +delete. The default is the current tab. However, if there is only +one tab, create another one, prompting me for the buffer to +display in the new tab." + (interactive "P") + (let ((tabs (seq-sort + (lambda (t1 t2) + (cond + ((null (assoc 'time t1))) + ((null (assoc 'time t2)) nil) + (t (> (alist-get 'time t1) + (alist-get 'time t2))))) + (tab-bar-tabs)))) + (cond + ((or (equal arg (cons 4 nil)) + (null (cdr tabs))) + (switch-to-buffer-other-tab (read-buffer "Switch to buffer in a new tab" + (other-buffer)))) + ((and (cdr tabs) + (null (cddr tabs)) + (not (or (equal arg (cons 4 nil)) + (equal arg (cons 16 nil))))) + (tab-bar-switch-to-tab (cdr (assoc 'name (cadr tabs))))) + ((not (or (equal arg (cons 4 nil)) + (equal arg (cons 16 nil)))) + (tab-bar-switch-to-tab + (completing-read (format + "Switch to tab by name (default %s): " + (cdr (assoc 'name (cadr tabs)))) + (mapcar (lambda (tab) + (cdr (assoc 'name tab))) + tabs) + nil nil nil nil + (cdr (assoc 'name (cadr tabs)))))) + ((equal arg (cons 16 nil)) + (tab-bar-close-tab-by-name + (completing-read "Close tab: " + (mapcar (lambda (tab) + (cdr (assoc 'name tab))) + tabs) + nil nil nil nil + (cdr (assoc 'name (car tabs))))))))) + ;;;###autoload (defun tab-switcher-first () "Go to the first window configuration line." diff --git a/theme.el b/theme.el index 76eb03a..b60652c 100644 --- a/theme.el +++ b/theme.el @@ -1,43 +1,59 @@ ;;; theme -(setq modus-vivendi-theme-slanted-constructs t - modus-vivendi-theme-bold-constructs t - ;; modus-vivendi-theme-3d-modeline t - modus-vivendi-theme-mode-line '3d - modus-vivendi-theme-diffs nil - modus-vivendi-theme-completions nil - modus-vivendi-theme-org-blocks 'rainbow - modus-vivendi-theme-rainbow-org-src-blocks t - modus-vivendi-theme-variable-pitch-headings t - modus-vivendi-theme-headings '((t . rainbow)) - ;; modus-vivendi-theme-rainbow-headings t - ;; modus-vivendi-theme-section-headings t - modus-vivendi-theme-scale-headings t - modus-vivendi-theme-scale-1 1.05 - modus-vivendi-theme-scale-2 1.1 - modus-vivendi-theme-scale-3 1.15 - modus-vivendi-theme-scale-4 1.2 - modus-vivendi-theme-scale-5 1.3) +(setq modus-themes-bold-constructs t) +(setq modus-themes-slanted-constructs t) +(setq modus-themes-mode-line '3d) +(setq modus-themes-org-blocks 'grayscale) ; Try it out +(setq modus-themes-headings '((t . rainbow))) -(setq modus-operandi-theme-slanted-constructs t - modus-operandi-theme-bold-constructs t - ;; modus-operandi-theme-3d-modeline t - modus-operandi-theme-mode-line '3d - modus-operandi-theme-diffs nil - modus-operandi-theme-completions nil - modus-operandi-theme-org-blocks 'rainbow - modus-operandi-theme-rainbow-org-src-blocks t - modus-operandi-theme-variable-pitch-headings t - modus-operandi-theme-headings '((t . rainbow)) - ;; modus-operandi-theme-rainbow-headings t - ;; modus-operandi-theme-section-headings t - modus-operandi-theme-scale-headings t - modus-operandi-theme-scale-1 1.05 - modus-operandi-theme-scale-2 1.1 - modus-operandi-theme-scale-3 1.15 - modus-operandi-theme-scale-4 1.2 - modus-operandi-theme-scale-5 1.3) +(setq modus-themes-scale-headings t) +(setq modus-themes-scale-1 1.05) +(setq modus-themes-scale-2 1.1) +(setq modus-themes-scale-3 1.15) +(setq modus-themes-scale-4 1.2) +(setq modus-themes-scale-5 1.3) + +(setq modus-themes-variable-pitch-headings t) (use-package "protesilaos/modus-themes" 'modus-vivendi-theme (load-theme 'modus-vivendi t)) +;;; Archives + +;; (setq modus-vivendi-theme-slanted-constructs t +;; modus-vivendi-theme-bold-constructs t +;; ;; modus-vivendi-theme-3d-modeline t +;; modus-vivendi-theme-mode-line '3d +;; modus-vivendi-theme-diffs nil +;; modus-vivendi-theme-completions nil +;; modus-vivendi-theme-org-blocks 'rainbow +;; modus-vivendi-theme-rainbow-org-src-blocks t +;; modus-vivendi-theme-variable-pitch-headings t +;; modus-vivendi-theme-headings '((t . rainbow)) +;; ;; modus-vivendi-theme-rainbow-headings t +;; ;; modus-vivendi-theme-section-headings t +;; modus-vivendi-theme-scale-headings t +;; modus-vivendi-theme-scale-1 1.05 +;; modus-vivendi-theme-scale-2 1.1 +;; modus-vivendi-theme-scale-3 1.15 +;; modus-vivendi-theme-scale-4 1.2 +;; modus-vivendi-theme-scale-5 1.3) + +;; (setq modus-operandi-theme-slanted-constructs t +;; modus-operandi-theme-bold-constructs t +;; ;; modus-operandi-theme-3d-modeline t +;; modus-operandi-theme-mode-line '3d +;; modus-operandi-theme-diffs nil +;; modus-operandi-theme-completions nil +;; modus-operandi-theme-org-blocks 'rainbow +;; modus-operandi-theme-rainbow-org-src-blocks t +;; modus-operandi-theme-variable-pitch-headings t +;; modus-operandi-theme-headings '((t . rainbow)) +;; ;; modus-operandi-theme-rainbow-headings t +;; ;; modus-operandi-theme-section-headings t +;; modus-operandi-theme-scale-headings t +;; modus-operandi-theme-scale-1 1.05 +;; modus-operandi-theme-scale-2 1.1 +;; modus-operandi-theme-scale-3 1.15 +;; modus-operandi-theme-scale-4 1.2 +;; modus-operandi-theme-scale-5 1.3) diff --git a/view-conf.el b/view-conf.el new file mode 100644 index 0000000..ee6b8dd --- /dev/null +++ b/view-conf.el @@ -0,0 +1,96 @@ +;;; view-conf.el --- My configurations to view things -*- lexical-binding: t; -*- + +;;;###autoload +(defun durand-view-timers-or-temps (&optional arg) + "View the list of timers or view the CPU temperature info. +If ARG is nil, view the list of timers. +If ARG is '(4), view the information about CPU temperature and +fans speed and some others. +If ARG is '(16), view the battery information." + (interactive "P") + (cond + ((null arg) + (let (fan-speed + cpu-die-temperature + remain + full-capacity + fullp + charging + cycle + condition + connected + battery-temp) + (with-temp-buffer +;;; NOTE: First fans information + (insert (funcall + (plist-get (car (auth-source-search :host "local-computer")) + :secret))) + (call-process-region + nil nil "sudo" + nil t nil "-S" "powermetrics" + "-i1" "-n1" "-ssmc") + (goto-char (point-min)) + (search-forward "Fan" nil t) + (setf fan-speed + (progn (re-search-forward "[[:digit:]]+" (line-end-position) t) + (string-to-number (match-string 0))) + cpu-die-temperature + (progn (re-search-forward "temperature: \\([[:digit:]]+\\.[[:digit:]]+\\)" nil t) + (string-to-number (match-string 1)))) + +;;; NOTE: Now battery charge information + (erase-buffer) + (call-process "system_profiler" nil t nil + "SPPowerDataType") + (goto-char (point-min)) + (re-search-forward "Fully Charged: \\(.+\\)$" nil t) + (setf fullp (match-string-no-properties 1)) + (re-search-forward "Charging: \\(.+\\)$" nil t) + (setf charging (match-string-no-properties 1)) + (re-search-forward "Full Charge Capacity (mAh): \\([[:digit:]]+\\)$" nil t) + (setf full-capacity (string-to-number (match-string-no-properties 1))) + (re-search-forward "State of Charge (%): \\([[:digit:]]+\\)" nil t) + (setf remain (string-to-number (match-string-no-properties 1))) + (re-search-forward "Cycle Count: \\(.+\\)$" nil t) + (setf cycle (string-to-number (match-string-no-properties 1))) + (re-search-forward "Condition: \\(.+\\)$" nil t) + (setf condition (match-string-no-properties 1)) + (re-search-forward "Connected: \\(.+\\)$" nil t) + (setf connected (match-string-no-properties 1)) + +;;; NOTE: Now battery temperature + (erase-buffer) + (call-process "ioreg" nil t nil "-n" "AppleSmartBattery" "-r") + (goto-char (point-min)) + (re-search-forward "Temperature..=." nil t) + (re-search-forward "[[:digit:]]+" nil t) + (setf battery-temp + (/ (string-to-number (match-string-no-properties 0)) + 100.0))) + (message + (concat + (format "fan: %d, temp: %s, battery temp: %.2f" + fan-speed cpu-die-temperature battery-temp) + "\n" + (format "Full: %d, remaining: %d%s, fullp: %s, charging: %s, connected: %s, cycles: %d, condition: %s" + full-capacity remain "%%" fullp charging connected cycle condition))))) + ((equal arg (list 4)) (list-timers)) + (t + (user-error "Unsupported ARG: %S" arg)))) + +(define-obsolete-function-alias 'durand-view-timers 'durand-view-timers-or-temps + "2020-09-02" "View the list of timers.") + +;;;###autoload +(defun durand-view-process (&optional arg) + "View the list of processes" + (interactive "P") + (if arg + (proced) + (message "%s" (process-list)))) + +;;; About view-mode + +(require 'view) + +(define-key view-mode-map (vector 108) 'recenter-top-bottom) diff --git a/view-functions.el b/view-functions.el deleted file mode 100644 index 5d51293..0000000 --- a/view-functions.el +++ /dev/null @@ -1,90 +0,0 @@ -;;; view-functions.el --- My functions to view things -*- lexical-binding: t; -*- - -;;;###autoload -(defun durand-view-timers-or-temps (&optional arg) - "View the list of timers or view the CPU temperature info. -If ARG is nil, view the list of timers. -If ARG is '(4), view the information about CPU temperature and -fans speed and some others. -If ARG is '(16), view the battery information." - (interactive "P") - (cond - ((null arg) - (let (fan-speed - cpu-die-temperature - remain - full-capacity - fullp - charging - cycle - condition - connected - battery-temp) - (with-temp-buffer -;;; NOTE: First fans information - (insert (funcall - (plist-get (car (auth-source-search :host "local-computer")) - :secret))) - (call-process-region - nil nil "sudo" - nil t nil "-S" "powermetrics" - "-i1" "-n1" "-ssmc") - (goto-char (point-min)) - (search-forward "Fan" nil t) - (setf fan-speed - (progn (re-search-forward "[[:digit:]]+" (line-end-position) t) - (string-to-number (match-string 0))) - cpu-die-temperature - (progn (re-search-forward "temperature: \\([[:digit:]]+\\.[[:digit:]]+\\)" nil t) - (string-to-number (match-string 1)))) - -;;; NOTE: Now battery charge information - (erase-buffer) - (call-process "system_profiler" nil t nil - "SPPowerDataType") - (goto-char (point-min)) - (re-search-forward "Fully Charged: \\(.+\\)$" nil t) - (setf fullp (match-string-no-properties 1)) - (re-search-forward "Charging: \\(.+\\)$" nil t) - (setf charging (match-string-no-properties 1)) - (re-search-forward "Full Charge Capacity (mAh): \\([[:digit:]]+\\)$" nil t) - (setf full-capacity (string-to-number (match-string-no-properties 1))) - (re-search-forward "State of Charge (%): \\([[:digit:]]+\\)" nil t) - (setf remain (string-to-number (match-string-no-properties 1))) - (re-search-forward "Cycle Count: \\(.+\\)$" nil t) - (setf cycle (string-to-number (match-string-no-properties 1))) - (re-search-forward "Condition: \\(.+\\)$" nil t) - (setf condition (match-string-no-properties 1)) - (re-search-forward "Connected: \\(.+\\)$" nil t) - (setf connected (match-string-no-properties 1)) - -;;; NOTE: Now battery temperature - (erase-buffer) - (call-process "ioreg" nil t nil "-n" "AppleSmartBattery" "-r") - (goto-char (point-min)) - (re-search-forward "Temperature..=." nil t) - (re-search-forward "[[:digit:]]+" nil t) - (setf battery-temp - (/ (string-to-number (match-string-no-properties 0)) - 100.0))) - (message - (concat - (format "fan: %d, temp: %s, battery temp: %.2f" - fan-speed cpu-die-temperature battery-temp) - "\n" - (format "Full: %d, remaining: %d%s, fullp: %s, charging: %s, connected: %s, cycles: %d, condition: %s" - full-capacity remain "%%" fullp charging connected cycle condition))))) - ((equal arg (list 4)) (list-timers)) - (t - (user-error "Unsupported ARG: %S" arg)))) - -(define-obsolete-function-alias 'durand-view-timers 'durand-view-timers-or-temps - "2020-09-02" "View the list of timers.") - -;;;###autoload -(defun durand-view-process (&optional arg) - "View the list of processes" - (interactive "P") - (if arg - (proced) - (message "%s" (process-list)))) -- cgit v1.2.3-18-g5258