Fix spacing issue with misc-info and process segs.
This commit is contained in:
		
							parent
							
								
									5ff7cb514d
								
							
						
					
					
						commit
						9358d9c81f
					
				@ -280,7 +280,7 @@
 | 
				
			|||||||
(defun mood-line-segment-misc-info ()
 | 
					(defun mood-line-segment-misc-info ()
 | 
				
			||||||
  "Displays the current value of `mode-line-misc-info' in the mode-line."
 | 
					  "Displays the current value of `mode-line-misc-info' in the mode-line."
 | 
				
			||||||
  (let ((misc-info (format-mode-line mode-line-misc-info 'mood-line-unimportant)))
 | 
					  (let ((misc-info (format-mode-line mode-line-misc-info 'mood-line-unimportant)))
 | 
				
			||||||
    (unless (string= misc-info "")
 | 
					    (unless (string= (mood-line--string-trim misc-info) "")
 | 
				
			||||||
      (concat (mood-line--string-trim misc-info) "  "))))
 | 
					      (concat (mood-line--string-trim misc-info) "  "))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(defun mood-line-segment-flycheck ()
 | 
					(defun mood-line-segment-flycheck ()
 | 
				
			||||||
@ -294,8 +294,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
(defun mood-line-segment-process ()
 | 
					(defun mood-line-segment-process ()
 | 
				
			||||||
  "Displays the current value of `mode-line-process' in the mode-line."
 | 
					  "Displays the current value of `mode-line-process' in the mode-line."
 | 
				
			||||||
  (when mode-line-process
 | 
					  (let ((process-info (format-mode-line mode-line-process)))
 | 
				
			||||||
    (concat (mood-line--string-trim (format-mode-line mode-line-process)) "  ")))
 | 
					    (unless (string= (mood-line--string-trim process-info) "")
 | 
				
			||||||
 | 
					      (concat (mood-line--string-trim process-info) "  "))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
;;
 | 
					;;
 | 
				
			||||||
;; Activation function
 | 
					;; Activation function
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user