]> git.ameliathe1st.gay Git - cells.git/commitdiff
Complétions dans l'ordre alphabétique
authorAmélia Coutard-Sander <git@ameliathe1st.gay>
Sun, 12 Jan 2025 02:55:41 +0000 (03:55 +0100)
committerAmélia Coutard-Sander <git@ameliathe1st.gay>
Sun, 12 Jan 2025 02:55:41 +0000 (03:55 +0100)
bin/modes.ml

index d9641f91211c1842b2bd27cc5393b2a065ae5217..cb347c70346b9af2165857a97a086fee284183c0 100644 (file)
@@ -107,6 +107,7 @@ module rec Command : (Mode with type initer = string) = struct
           aux (len - 1) len
 
   let real_complete cmd completions =
+          let completions = List.sort (fun x y -> compare y x) completions in
           let last = last cmd in
           match List.filter (String.starts_with ~prefix:last) completions with
           | [] -> (String.concat " " (List.map Parse.shquote cmd), [])