Skip to content

Commit

Permalink
Change all helm buffer window name to lowercase, for consistency. #1513
Browse files Browse the repository at this point in the history
  • Loading branch information
zw963 committed May 20, 2016
1 parent d658723 commit f328123
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions helm-files.el
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ print with the default `lpr' settings.
NOTE: DO NOT set the \"-P\" flag in `lpr-switches', if you really
have to modify this, do it in `lpr-printer-switch'.
Same as `dired-do-print' but for helm."
(require 'lpr)
(when (or helm-current-prefix-arg
Expand Down Expand Up @@ -1453,7 +1453,7 @@ If prefix numeric arg is given go ARG level up."
(with-helm-alive-p
(when (and (helm-file-completion-source-p)
(not (helm-ff-invalid-tramp-name-p)))
(unless helm-find-files--level-tree-iterator
(unless helm-find-files--level-tree-iterator
(setq helm-find-files--level-tree-iterator
(helm-iter-list (cdr helm-find-files--level-tree))))
(setq helm-find-files--level-tree nil)
Expand Down Expand Up @@ -2499,8 +2499,8 @@ Use it for non--interactive calls of `helm-find-files'."
:ff-transformer-show-only-basename
helm-ff-transformer-show-only-basename
:default def
:prompt "Find Files or Url: "
:buffer "*Helm Find Files*")
:prompt "Find files or url: "
:buffer "*helm find files*")
(helm-attrset 'resume `(lambda ()
(setq helm-ff-default-directory
,helm-ff-default-directory
Expand Down Expand Up @@ -2529,7 +2529,7 @@ Use it for non--interactive calls of `helm-find-files'."
;; Switch back to helm-find-files.
(helm-set-pattern "./" t) ; Back to initial directory of hff session.
(helm-set-sources '(helm-source-find-files))
(helm--maybe-update-keymap)))))
(helm--maybe-update-keymap)))))
(put 'helm-find-files-toggle-to-bookmark 'helm-only t)

(defun helm-find-files-initial-input (&optional input)
Expand Down Expand Up @@ -2947,7 +2947,7 @@ Else return ACTIONS unmodified."
:path 'full
:directories nil
:match match
:skip-subdirs ignore-dirs)
:skip-subdirs ignore-dirs)
do (file-cache-add-file f)))

(defun helm-ff-cache-add-file (_candidate)
Expand Down Expand Up @@ -3079,7 +3079,7 @@ Don't use it in your own code unless you know what you are doing.")
(cl-loop for file in (helm-marked-candidates)
do (setq recentf-list (delq file recentf-list)))))))))

(defvar helm-source-recentf nil
(defvar helm-source-recentf nil
"See (info \"(emacs)File Conveniences\").
Set `recentf-max-saved-items' to a bigger value if default is too small.")

Expand Down Expand Up @@ -3144,7 +3144,7 @@ Set `recentf-max-saved-items' to a bigger value if default is too small.")
c)
(propertize c 'face 'helm-ff-file)))
:keymap helm-generic-files-map
:action 'helm-type-file-actions))
:action 'helm-type-file-actions))
:buffer "*helm browse project*"))

;;;###autoload
Expand Down Expand Up @@ -3435,7 +3435,7 @@ separator."
'(" " mode-line-buffer-identification " "
(:eval (format "L%s" (helm-candidate-number-at-point))) " "
(:eval (propertize
(format "[Find process finished - (%s results)]"
(format "[Find process finished - (%s results)]"
(max (1- (count-lines
(point-min) (point-max)))
0))
Expand Down
4 changes: 2 additions & 2 deletions helm-man.el
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ source.")

(defvar helm-source-man-pages
(helm-build-in-buffer-source "Manual Pages"
:init #'helm-man--init
:init #'helm-man--init
:persistent-action #'ignore
:filtered-candidate-transformer
(lambda (candidates _source)
Expand All @@ -102,7 +102,7 @@ With a prefix arg reinitialize the cache."
(interactive "P")
(when arg (setq helm-man--pages nil))
(helm :sources 'helm-source-man-pages
:buffer "*Helm man woman*"))
:buffer "*helm man woman*"))

(provide 'helm-man)

Expand Down

0 comments on commit f328123

Please sign in to comment.