]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/yasnippet/extras/imported/objc-mode/.yas-setup.el
Update packages/yasnippet by merging from its external upstream subtree
[gnu-emacs-elpa] / packages / yasnippet / extras / imported / objc-mode / .yas-setup.el
diff --git a/packages/yasnippet/extras/imported/objc-mode/.yas-setup.el b/packages/yasnippet/extras/imported/objc-mode/.yas-setup.el
deleted file mode 100644 (file)
index 34b1a3b..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-;;; .yas-setup.el --- Setup for objc-mode
-
-;; Copyright (C) 2013  Free Software Foundation, Inc.
-
-;; 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 3 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, see <http://www.gnu.org/licenses/>.
-
-;;; Code:
-
-(defun yas-objc-docset-query (query)
-  
-  )
-(defvar yas-objc-method-names (make-vector 1023 0))
-(defvar yas-objc-class-names (make-vector 1023 0))
-
-(defvar yas-objc-languages (list))
-(defvar yas-objc-defkinds (list))
-
-
-(defun yas-objc-extract-super-list ()
-  (interactive)
-  (setq yas-objc-method-names (make-vector 1023 0)
-        yas-objc-class-names (make-vector 1023 0)
-        yas-objc-languages (list)
-        yas-objc-defkinds (list))
-  (with-temp-buffer
-    (shell-command
-     "/Developer/usr/bin/docsetutil dump -skip-text /Developer/Documentation/DocSets/com.apple.adc.documentation.AppleSnowLeopard.CoreReference.docset/"
-     (current-buffer))
-    (goto-char (point-min))
-    (search-forward-regexp "API index contains .* tokens")
-    (while (search-forward-regexp "^\\([^/]*\\)/\\([^/]*\\)/\\([^/]*\\)/\\([^/]*\\)$" nil 'noerror)
-      (intern (match-string 3) yas-objc-class-names)
-      (intern (match-string 4) yas-objc-method-names)
-      (add-to-list 'yas-objc-languages (match-string 1))
-      (add-to-list 'yas-objc-defkinds (match-string 2)))))
-
-;; (put (intern-soft (setq chosen (completing-read "Method: " yas-objc-method-names)) yas-objc-method-names)
-;;      'someshit
-;;      'someday)
-
-;; (completing-read "Class: " yas-objc-class-names)
-
-;; (get (intern-soft (setq chosen (completing-read "hey: " yas-objc-method-names)) yas-objc-method-names)
-;;      'someshit)
-
-(defun yas-objc-current-method-signature ()
-  (let ((orig-point (point))
-        (start-point nil)
-        sig
-        orig-ppss
-        ppss)
-    (save-excursion
-      (condition-case nil
-          (while (not (eq (point) (point-min))) (backward-sexp))
-        (error nil))
-      (when (eq (preceding-char) ?\[)
-        (setq orig-ppss (syntax-ppss))
-        (forward-sexp)
-        (skip-chars-forward " \t\n")
-        (setq ppss (syntax-ppss))
-        (while (and (>= (car ppss) (car orig-ppss))
-                    (search-forward-regexp "[[:alpha:]]+:" nil 'noerror))
-          (setq ppss (syntax-ppss))
-          (when (eq (car ppss) (car orig-ppss))
-            (setq sig
-                  (concat (or sig "") (match-string-no-properties 0)))))
-          sig))))
-
-(defun yas-objc-current-method-signature ()
-  (let ((orig-point (point))
-        (start-point nil)
-        sig
-        orig-ppss
-        ppss)
-    (save-excursion
-      (condition-case nil
-          (while (not (eq (point) (point-max))) (backward-sexp))
-        (error ))
-      (when (eq (preceding-char) ?\[)
-        (setq orig-ppss (syntax-ppss))
-        (forward-sexp)
-        (skip-chars-forward " \t\n")
-        (setq ppss (syntax-ppss))
-        (condition-case nil
-            (while (and (>= (car ppss) (car orig-ppss))
-                        (search-forward-regexp "[[:alpha:]]+:" orig-point 'noerror))
-              (setq ppss (syntax-ppss))
-              (when (eq (car ppss) (car orig-ppss))
-                (setq sig
-                      (concat (or sig "") (match-string-no-properties 0))))
-              (forward-sexp))
-          (error nil))
-        (save-excursion
-          (backward-word)
-          (concat sig (buffer-substring-no-properties (point) orig-point)))
-        sig))))