From af539db4c6d903b795fa43199bb71e7c22ca19d9 Mon Sep 17 00:00:00 2001 From: Maciej Szlosarczyk Date: Thu, 2 May 2019 09:55:17 +0300 Subject: [PATCH] Fix indentation in company file --- 06company-yasnippet.el | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/06company-yasnippet.el b/06company-yasnippet.el index 5724158..9d328da 100644 --- a/06company-yasnippet.el +++ b/06company-yasnippet.el @@ -2,23 +2,23 @@ (require 'company); Add completion ;; Company configuration -(setq-default company-minimum-prefix-length 2 ; minimum prefix character number for auto complete. - company-idle-delay 0.1 - company-echo-delay 0 - ;; company-show-numbers t - company-tooltip-align-annotations t ; align annotations to the right tooltip border. - company-tooltip-flip-when-above t - company-tooltip-limit 10 ; tooltip candidates max limit. - company-tooltip-minimum 2 ; minimum candidates limit. - company-tooltip-minimum-width 0 ; The minimum width of the tooltip's inner area. +(setq-default + company-minimum-prefix-length 2 ; minimum prefix character number for auto complete. + company-idle-delay 0.1 + company-echo-delay 0 ;; company-show-numbers t + company-tooltip-align-annotations t ; align annotations to the right tooltip border. + company-tooltip-flip-when-above t + company-tooltip-limit 10 ; tooltip candidates max limit. + company-tooltip-minimum 2 ; minimum candidates limit. + company-tooltip-minimum-width 0 ; The minimum width of the tooltip's inner area. ; This doesn't include the margins and the scroll bar. - company-tooltip-margin 2 ; width of margin columns to show around the tooltip - company-tooltip-offset-display 'scrollbar ; 'lines - how to show tooltip unshown candidates number. - company-show-numbers nil ; t: show quick-access numbers for the first ten candidates. - company-selection-wrap-around t ; loop over candidates - ;; company-async-wait 0.03 - ;; company-async-timeout 2 - ) + company-tooltip-margin 2 ; width of margin columns to show around the tooltip + company-tooltip-offset-display 'scrollbar ; 'lines - how to show tooltip unshown candidates number. + company-show-numbers nil ; t: show quick-access numbers for the first ten candidates. + company-selection-wrap-around t ; loop over candidates + ;; company-async-wait 0.03 + ;; company-async-timeout 2 + ) (global-company-mode 1) (yas-global-mode 1) @@ -32,7 +32,6 @@ (company-dabbrev company-abbrev) )) - (setq-default company-lsp-cache-candidates 1 ;; Cache LSP results company-lsp-async 1 ;; Fetch LSP results asynchronously