Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
755c6714
Kaydet (Commit)
755c6714
authored
Agu 01, 1996
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
(python-mode): automatically install imenu stuff.
üst
81437467
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
8 deletions
+15
-8
python-mode.el
Misc/python-mode.el
+15
-8
No files found.
Misc/python-mode.el
Dosyayı görüntüle @
755c6714
...
...
@@ -18,17 +18,18 @@
;;; Commentary:
;;
;; This is a major mode for editing Python programs. It was developed
;; by Tim Peters
<tim@ksr.com> after an original idea by Michael
;;
A. Guravage. Tim doesn't appear to be on the 'net any longer so I
;;
(Barry) have
undertaken maintenance of the mode.
;; by Tim Peters
after an original idea by Michael A. Guravage. Tim
;;
left the net for a while and in the interim, Barry Warsaw has
;; undertaken maintenance of the mode.
;; At some point this mode will undergo a rewrite to bring it more in
;; line with GNU Emacs Lisp coding standards
. But all in all, the
;;
mode works exceedingly well, and I've simply been tweaking it as I
;;
go along. Ain't it wonderful that Python has a much more sane
;;
syntax than C? (or <shudder> C++?! :-). I can say that; I maintain
;; cc-mode!
;; line with GNU Emacs Lisp coding standards
, and to wax all the Emacs
;;
18 support. But all in all, the mode works exceedingly well, and
;;
I've simply been tweaking it as I go along. Ain't it wonderful
;;
that Python has a much more sane syntax than C? (or <shudder> C++?!
;;
:-). I can say that; I maintain
cc-mode!
;; The following statements, placed in your .emacs file or
;; site-init.el, will cause this file to be autoloaded, and
...
...
@@ -696,6 +697,12 @@ py-beep-if-tab-change\t\tring the bell if tab-width is changed"
(
if
py-beep-if-tab-change
(
beep
)))))
(
goto-char
start
))
;; install imenu
(
setq
imenu-create-index-function
(
function
imenu-example--create-python-index
))
(
if
(
fboundp
'imenu-add-to-menubar
)
(
imenu-add-to-menubar
(
format
"%s-%s"
"IM"
mode-name
)))
;; run the mode hook. py-mode-hook use is deprecated
(
if
python-mode-hook
(
run-hooks
'python-mode-hook
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment