2022-07-30 17:15:38 +00:00
|
|
|
;;; sclang-dev.el --- IDE for working with SuperCollider -*- coding: utf-8;
|
|
|
|
;;
|
|
|
|
;; Copyright 2003 stefan kersten <steve@k-hornz.de>
|
|
|
|
|
|
|
|
;;; License:
|
|
|
|
|
2011-07-22 18:31:17 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
;; modify it under the terms of the GNU General Public License as
|
|
|
|
;; published by the Free Software Foundation; either version 2 of the
|
|
|
|
;; License, or (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;; General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program; if not, write to the Free Software
|
|
|
|
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
|
|
;; USA
|
|
|
|
|
2022-07-30 17:15:38 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Edit SuperCollider help files.
|
|
|
|
|
2021-08-09 16:05:52 +00:00
|
|
|
(require 'sclang-util)
|
|
|
|
(require 'sclang-interp)
|
2011-07-22 18:31:17 +00:00
|
|
|
|
2022-07-30 17:15:38 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2009-04-09 20:53:47 +00:00
|
|
|
(sclang-set-command-handler
|
2022-07-30 17:15:38 +00:00
|
|
|
'openDevSource
|
|
|
|
(lambda (file)))
|
2009-04-09 20:53:47 +00:00
|
|
|
|
|
|
|
(defun sclang-edit-dev-source ()
|
|
|
|
"Edit the help file at the development location."
|
|
|
|
(interactive)
|
2022-07-30 17:15:38 +00:00
|
|
|
;; (sclang-document-name . (prSetTitle (buffer-name)))
|
|
|
|
(sclang-perform-command 'openDevSource (buffer-file-name)))
|
2009-04-09 20:53:47 +00:00
|
|
|
|
2009-04-09 21:06:20 +00:00
|
|
|
(provide 'sclang-dev)
|
|
|
|
|
2022-07-30 17:15:38 +00:00
|
|
|
;;; sclang-dev.el ends here
|