-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskell-mode-autoloads.el
808 lines (550 loc) · 28.2 KB
/
haskell-mode-autoloads.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
;;; haskell-mode-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads (ghc-core-mode ghc-core-create-core) "haskell-mode/ghc-core"
;;;;;; "haskell-mode/ghc-core.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/ghc-core.el
(autoload 'ghc-core-create-core "haskell-mode/ghc-core" "\
Compile and load the current buffer as tidy core.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.hcr\\'" . ghc-core-mode))
(autoload 'ghc-core-mode "haskell-mode/ghc-core" "\
Major mode for GHC Core files.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-align-imports) "haskell-mode/haskell-align-imports"
;;;;;; "haskell-mode/haskell-align-imports.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-align-imports.el
(autoload 'haskell-align-imports "haskell-mode/haskell-align-imports" "\
Align all the imports in the buffer.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-c-mode) "haskell-mode/haskell-c" "haskell-mode/haskell-c.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-c.el
(add-to-list 'auto-mode-alist '("\\.hsc\\'" . haskell-c-mode))
(autoload 'haskell-c-mode "haskell-mode/haskell-c" "\
Major mode for Haskell FFI files.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-cabal-visit-file haskell-cabal-get-dir
;;;;;; haskell-cabal-mode) "haskell-mode/haskell-cabal" "haskell-mode/haskell-cabal.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-cabal.el
(add-to-list 'auto-mode-alist '("\\.cabal\\'" . haskell-cabal-mode))
(autoload 'haskell-cabal-mode "haskell-mode/haskell-cabal" "\
Major mode for Cabal package description files.
\(fn)" t nil)
(autoload 'haskell-cabal-get-dir "haskell-mode/haskell-cabal" "\
Get the Cabal dir for a new project. Various ways of figuring this out,
and indeed just prompting the user. Do them all.
\(fn)" nil nil)
(autoload 'haskell-cabal-visit-file "haskell-mode/haskell-cabal" "\
Locate and visit package description file for file visited by current buffer.
This uses `haskell-cabal-find-file' to locate the closest
\".cabal\" file and open it. This command assumes a common Cabal
project structure where the \".cabal\" file is in the top-folder
of the project, and all files related to the project are in or
below the top-folder. If called with non-nil prefix argument
OTHER-WINDOW use `find-file-other-window'.
\(fn OTHER-WINDOW)" t nil)
;;;***
;;;### (autoloads (haskell-compile) "haskell-mode/haskell-compile"
;;;;;; "haskell-mode/haskell-compile.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-compile.el
(autoload 'haskell-compile "haskell-mode/haskell-compile" "\
Compile the Haskell program including the current buffer.
Tries to locate the next cabal description in current or parent
folders via `haskell-cabal-find-dir' and if found, invoke
`haskell-compile-cabal-build-command' from the cabal package root
folder. If no cabal package could be detected,
`haskell-compile-command' is used instead.
If prefix argument EDIT-COMMAND is non-nil (and not a negative
prefix `-'), `haskell-compile' prompts for custom compile
command.
If EDIT-COMMAND contains the negative prefix argument `-',
`haskell-compile' calls the alternative command defined in
`haskell-compile-cabal-build-alt-command' if a cabal package was
detected.
`haskell-compile' uses `haskell-compilation-mode' which is
derived from `compilation-mode'. See Info
node `(haskell-mode)compilation' for more details.
\(fn &optional EDIT-COMMAND)" t nil)
;;;***
;;;### (autoloads (haskell-decl-scan-mode turn-on-haskell-decl-scan
;;;;;; haskell-ds-create-imenu-index) "haskell-mode/haskell-decl-scan"
;;;;;; "haskell-mode/haskell-decl-scan.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-decl-scan.el
(autoload 'haskell-ds-create-imenu-index "haskell-mode/haskell-decl-scan" "\
Function for finding `imenu' declarations in Haskell mode.
Finds all declarations (classes, variables, imports, instances and
datatypes) in a Haskell file for the `imenu' package.
\(fn)" nil nil)
(autoload 'turn-on-haskell-decl-scan "haskell-mode/haskell-decl-scan" "\
Unconditionally activate `haskell-decl-scan-mode'.
\(fn)" t nil)
(autoload 'haskell-decl-scan-mode "haskell-mode/haskell-decl-scan" "\
Toggle Haskell declaration scanning minor mode on or off.
With a prefix argument ARG, enable minor mode if ARG is
positive, and disable it otherwise. If called from Lisp, enable
the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
See also info node `(haskell-mode)haskell-decl-scan-mode' for
more details about this minor mode.
Top-level declarations are scanned and listed in the menu item
\"Declarations\" (if enabled via option
`haskell-decl-scan-add-to-menubar'). Selecting an item from this
menu will take point to the start of the declaration.
\\[beginning-of-defun] and \\[end-of-defun] move forward and backward to the start of a declaration.
This may link with `haskell-doc-mode'.
For non-literate and LaTeX-style literate scripts, we assume the
common convention that top-level declarations start at the first
column. For Bird-style literate scripts, we assume the common
convention that top-level declarations start at the third column,
ie. after \"> \".
Anything in `font-lock-comment-face' is not considered for a
declaration. Therefore, using Haskell font locking with comments
coloured in `font-lock-comment-face' improves declaration scanning.
Literate Haskell scripts are supported: If the value of
`haskell-literate' (set automatically by `literate-haskell-mode')
is `bird', a Bird-style literate script is assumed. If it is nil
or `tex', a non-literate or LaTeX-style literate script is
assumed, respectively.
Invokes `haskell-decl-scan-mode-hook' on activation.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (haskell-doc-show-type haskell-doc-current-info
;;;;;; haskell-doc-mode) "haskell-mode/haskell-doc" "haskell-mode/haskell-doc.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-doc.el
(autoload 'haskell-doc-mode "haskell-mode/haskell-doc" "\
Enter `haskell-doc-mode' for showing fct types in the echo area.
See variable docstring.
\(fn &optional ARG)" t nil)
(defalias 'turn-on-haskell-doc-mode 'haskell-doc-mode)
(defalias 'turn-on-haskell-doc 'haskell-doc-mode)
(autoload 'haskell-doc-current-info "haskell-mode/haskell-doc" "\
Return the info about symbol at point.
Meant for `eldoc-documentation-function'.
\(fn)" nil nil)
(autoload 'haskell-doc-show-type "haskell-mode/haskell-doc" "\
Show the type of the function near point.
For the function under point, show the type in the echo area.
This information is extracted from the `haskell-doc-prelude-types' alist
of prelude functions and their types, or from the local functions in the
current buffer.
\(fn &optional SYM)" t nil)
;;;***
;;;### (autoloads (haskell-font-lock-choose-keywords) "haskell-mode/haskell-font-lock"
;;;;;; "haskell-mode/haskell-font-lock.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-font-lock.el
(autoload 'haskell-font-lock-choose-keywords "haskell-mode/haskell-font-lock" "\
\(fn)" nil nil)
;;;***
;;;### (autoloads (haskell-indent-mode turn-on-haskell-indent) "haskell-mode/haskell-indent"
;;;;;; "haskell-mode/haskell-indent.el" (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-indent.el
(autoload 'turn-on-haskell-indent "haskell-mode/haskell-indent" "\
Turn on ``intelligent'' Haskell indentation mode.
\(fn)" nil nil)
(autoload 'haskell-indent-mode "haskell-mode/haskell-indent" "\
``Intelligent'' Haskell indentation mode.
This deals with the layout rule of Haskell.
\\[haskell-indent-cycle] starts the cycle which proposes new
possibilities as long as the TAB key is pressed. Any other key
or mouse click terminates the cycle and is interpreted except for
RET which merely exits the cycle.
Other special keys are:
\\[haskell-indent-insert-equal]
inserts an =
\\[haskell-indent-insert-guard]
inserts an |
\\[haskell-indent-insert-otherwise]
inserts an | otherwise =
these functions also align the guards and rhs of the current definition
\\[haskell-indent-insert-where]
inserts a where keyword
\\[haskell-indent-align-guards-and-rhs]
aligns the guards and rhs of the region
\\[haskell-indent-put-region-in-literate]
makes the region a piece of literate code in a literate script
Invokes `haskell-indent-hook' if not nil.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (turn-on-haskell-indentation haskell-indentation-mode)
;;;;;; "haskell-mode/haskell-indentation" "haskell-mode/haskell-indentation.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-indentation.el
(autoload 'haskell-indentation-mode "haskell-mode/haskell-indentation" "\
Haskell indentation mode that deals with the layout rule.
It rebinds RET, DEL and BACKSPACE, so that indentations can be
set and deleted as if they were real tabs. It supports
autofill-mode.
\(fn &optional ARG)" t nil)
(autoload 'turn-on-haskell-indentation "haskell-mode/haskell-indentation" "\
Turn on the haskell-indentation minor mode.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-interactive-mode-reset-error haskell-interactive-mode-echo
;;;;;; haskell-interactive-switch haskell-interactive-bring haskell-interactive-mode)
;;;;;; "haskell-mode/haskell-interactive-mode" "haskell-mode/haskell-interactive-mode.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-interactive-mode.el
(autoload 'haskell-interactive-mode "haskell-mode/haskell-interactive-mode" "\
Interactive mode for Haskell.
See Info node `(haskell-mode)haskell-interactive-mode' for more
information.
Key bindings:
\\{haskell-interactive-mode-map}
\(fn)" t nil)
(autoload 'haskell-interactive-bring "haskell-mode/haskell-interactive-mode" "\
Bring up the interactive mode for this session.
\(fn)" t nil)
(autoload 'haskell-interactive-switch "haskell-mode/haskell-interactive-mode" "\
Switch to the interactive mode for this session.
\(fn)" t nil)
(autoload 'haskell-interactive-mode-echo "haskell-mode/haskell-interactive-mode" "\
Echo a read only piece of text before the prompt.
\(fn SESSION MESSAGE &optional MODE)" nil nil)
(autoload 'haskell-interactive-mode-reset-error "haskell-mode/haskell-interactive-mode" "\
Reset the error cursor position.
\(fn SESSION)" t nil)
;;;***
;;;### (autoloads (haskell-menu) "haskell-mode/haskell-menu" "haskell-mode/haskell-menu.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-menu.el
(autoload 'haskell-menu "haskell-mode/haskell-menu" "\
Launch the Haskell sessions menu.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-hayoo haskell-hoogle literate-haskell-mode
;;;;;; haskell-mode haskell-customize haskell-mode-view-news haskell-version)
;;;;;; "haskell-mode/haskell-mode" "haskell-mode/haskell-mode.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-mode.el
(autoload 'haskell-version "haskell-mode/haskell-mode" "\
Show the `haskell-mode` version in the echo area.
With prefix argument HERE, insert it at point.
When FULL is non-nil, use a verbose version string.
When MESSAGE is non-nil, display a message with the version.
\(fn &optional HERE)" t nil)
(autoload 'haskell-mode-view-news "haskell-mode/haskell-mode" "\
Display information on recent changes to haskell-mode.
\(fn)" t nil)
(autoload 'haskell-customize "haskell-mode/haskell-mode" "\
Browse the haskell customize sub-tree.
This calls 'customize-browse' with haskell as argument and makes
sure all haskell customize definitions have been loaded.
\(fn)" t nil)
(defvar haskell-mode-map (let ((map (make-sparse-keymap))) (define-key map [24 4] 'inferior-haskell-send-decl) (define-key map [3 26] 'switch-to-haskell) (define-key map [3 12] 'inferior-haskell-load-file) (define-key map [3 2] 'switch-to-haskell) (define-key map (kbd "C-c C-t") 'inferior-haskell-type) (define-key map (kbd "C-c C-i") 'inferior-haskell-info) (define-key map (kbd "C-c M-.") 'inferior-haskell-find-definition) (define-key map (kbd "C-c C-d") 'inferior-haskell-find-haddock) (define-key map [3 22] 'haskell-check) (define-key map (kbd "C-c C-.") 'haskell-mode-format-imports) (define-key map [remap delete-indentation] 'haskell-delete-indentation) map) "\
Keymap used in Haskell mode.")
(autoload 'haskell-mode "haskell-mode/haskell-mode" "\
Major mode for editing Haskell programs.
See also Info node `(haskell-mode)Getting Started' for more
information about this mode.
\\<haskell-mode-map>
Literate scripts are supported via `literate-haskell-mode'.
The variable `haskell-literate' indicates the style of the script in the
current buffer. See the documentation on this variable for more details.
Use `haskell-version' to find out what version of Haskell mode you are
currently using.
Additional Haskell mode modules can be hooked in via `haskell-mode-hook';
see documentation for that variable for more details.
\(fn)" t nil)
(autoload 'literate-haskell-mode "haskell-mode/haskell-mode" "\
As `haskell-mode' but for literate scripts.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.\\(?:[gh]s\\|hi\\)\\'" . haskell-mode))
(add-to-list 'auto-mode-alist '("\\.l[gh]s\\'" . literate-haskell-mode))
(add-to-list 'interpreter-mode-alist '("runghc" . haskell-mode))
(add-to-list 'interpreter-mode-alist '("runhaskell" . haskell-mode))
(autoload 'haskell-hoogle "haskell-mode/haskell-mode" "\
Do a Hoogle search for QUERY.
\(fn QUERY)" t nil)
(defalias 'hoogle 'haskell-hoogle)
(autoload 'haskell-hayoo "haskell-mode/haskell-mode" "\
Do a Hayoo search for QUERY.
\(fn QUERY)" t nil)
(defalias 'hayoo 'haskell-hayoo)
;;;***
;;;### (autoloads (haskell-hayoo haskell-hoogle literate-haskell-mode
;;;;;; haskell-mode haskell-customize haskell-mode-view-news haskell-version)
;;;;;; "haskell-mode/haskell-mode.tmp" "haskell-mode/haskell-mode.tmp.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-mode.tmp.el
(autoload 'haskell-version "haskell-mode/haskell-mode.tmp" "\
Show the `haskell-mode` version in the echo area.
With prefix argument HERE, insert it at point.
When FULL is non-nil, use a verbose version string.
When MESSAGE is non-nil, display a message with the version.
\(fn &optional HERE)" t nil)
(autoload 'haskell-mode-view-news "haskell-mode/haskell-mode.tmp" "\
Display information on recent changes to haskell-mode.
\(fn)" t nil)
(autoload 'haskell-customize "haskell-mode/haskell-mode.tmp" "\
Browse the haskell customize sub-tree.
This calls 'customize-browse' with haskell as argument and makes
sure all haskell customize definitions have been loaded.
\(fn)" t nil)
(defvar haskell-mode-map (let ((map (make-sparse-keymap))) (define-key map [24 4] 'inferior-haskell-send-decl) (define-key map [3 26] 'switch-to-haskell) (define-key map [3 12] 'inferior-haskell-load-file) (define-key map [3 2] 'switch-to-haskell) (define-key map (kbd "C-c C-t") 'inferior-haskell-type) (define-key map (kbd "C-c C-i") 'inferior-haskell-info) (define-key map (kbd "C-c M-.") 'inferior-haskell-find-definition) (define-key map (kbd "C-c C-d") 'inferior-haskell-find-haddock) (define-key map [3 22] 'haskell-check) (define-key map (kbd "C-c C-.") 'haskell-mode-format-imports) (define-key map [remap delete-indentation] 'haskell-delete-indentation) map) "\
Keymap used in Haskell mode.")
(autoload 'haskell-mode "haskell-mode/haskell-mode.tmp" "\
Major mode for editing Haskell programs.
See also Info node `(haskell-mode)Getting Started' for more
information about this mode.
\\<haskell-mode-map>
Literate scripts are supported via `literate-haskell-mode'.
The variable `haskell-literate' indicates the style of the script in the
current buffer. See the documentation on this variable for more details.
Use `haskell-version' to find out what version of Haskell mode you are
currently using.
Additional Haskell mode modules can be hooked in via `haskell-mode-hook';
see documentation for that variable for more details.
\(fn)" t nil)
(autoload 'literate-haskell-mode "haskell-mode/haskell-mode.tmp" "\
As `haskell-mode' but for literate scripts.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.\\(?:[gh]s\\|hi\\)\\'" . haskell-mode))
(add-to-list 'auto-mode-alist '("\\.l[gh]s\\'" . literate-haskell-mode))
(add-to-list 'interpreter-mode-alist '("runghc" . haskell-mode))
(add-to-list 'interpreter-mode-alist '("runhaskell" . haskell-mode))
(autoload 'haskell-hoogle "haskell-mode/haskell-mode.tmp" "\
Do a Hoogle search for QUERY.
\(fn QUERY)" t nil)
(defalias 'hoogle 'haskell-hoogle)
(autoload 'haskell-hayoo "haskell-mode/haskell-mode.tmp" "\
Do a Hayoo search for QUERY.
\(fn QUERY)" t nil)
(defalias 'hayoo 'haskell-hayoo)
;;;***
;;;### (autoloads (haskell-move-nested-left haskell-move-nested-right
;;;;;; haskell-move-nested) "haskell-mode/haskell-move-nested" "haskell-mode/haskell-move-nested.el"
;;;;;; (21295 22751 0 0))
;;; Generated autoloads from haskell-mode/haskell-move-nested.el
(autoload 'haskell-move-nested "haskell-mode/haskell-move-nested" "\
Shift the nested off-side-rule block adjacent to point by COLS columns to the right.
In Transient Mark mode, if the mark is active, operate on the contents
of the region instead.
\(fn COLS)" nil nil)
(autoload 'haskell-move-nested-right "haskell-mode/haskell-move-nested" "\
Increase indentation of the following off-side-rule block adjacent to point.
Use a numeric prefix argument to indicate amount of indentation to apply.
In Transient Mark mode, if the mark is active, operate on the contents
of the region instead.
\(fn COLS)" t nil)
(autoload 'haskell-move-nested-left "haskell-mode/haskell-move-nested" "\
Decrease indentation of the following off-side-rule block adjacent to point.
Use a numeric prefix argument to indicate amount of indentation to apply.
In Transient Mark mode, if the mark is active, operate on the contents
of the region instead.
\(fn COLS)" t nil)
;;;***
;;;### (autoloads (haskell-navigate-imports-return haskell-navigate-imports-go
;;;;;; haskell-navigate-imports) "haskell-mode/haskell-navigate-imports"
;;;;;; "haskell-mode/haskell-navigate-imports.el" (21295 22751 0
;;;;;; 0))
;;; Generated autoloads from haskell-mode/haskell-navigate-imports.el
(autoload 'haskell-navigate-imports "haskell-mode/haskell-navigate-imports" "\
Cycle the Haskell import lines or return to point (with prefix arg).
\(fn &optional RETURN)" t nil)
(autoload 'haskell-navigate-imports-go "haskell-mode/haskell-navigate-imports" "\
Go to the first line of a list of consequtive import lines. Cycles.
\(fn)" t nil)
(autoload 'haskell-navigate-imports-return "haskell-mode/haskell-navigate-imports" "\
Return to the non-import point we were at before going to the module list.
If we were originally at an import list, we can just cycle through easily.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-process haskell-process-start haskell-process-cabal
;;;;;; haskell-process-cabal-build haskell-process-load-or-reload
;;;;;; haskell-process-reload-file haskell-process-load-file haskell-process-do-info
;;;;;; haskell-process-do-type haskell-process-generate-tags) "haskell-mode/haskell-process"
;;;;;; "haskell-mode/haskell-process.el" (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-process.el
(autoload 'haskell-process-generate-tags "haskell-mode/haskell-process" "\
Regenerate the TAGS table.
\(fn &optional AND-THEN-FIND-THIS-TAG)" t nil)
(autoload 'haskell-process-do-type "haskell-mode/haskell-process" "\
Print the type of the given expression.
\(fn &optional INSERT-VALUE)" t nil)
(autoload 'haskell-process-do-info "haskell-mode/haskell-process" "\
Print info on the identifier at point.
If PROMPT-VALUE is non-nil, request identifier via mini-buffer.
\(fn &optional PROMPT-VALUE)" t nil)
(autoload 'haskell-process-load-file "haskell-mode/haskell-process" "\
Load the current buffer file.
\(fn)" t nil)
(autoload 'haskell-process-reload-file "haskell-mode/haskell-process" "\
Re-load the current buffer file.
\(fn)" t nil)
(autoload 'haskell-process-load-or-reload "haskell-mode/haskell-process" "\
Load or reload. Universal argument toggles which.
\(fn &optional TOGGLE)" t nil)
(autoload 'haskell-process-cabal-build "haskell-mode/haskell-process" "\
Build the Cabal project.
\(fn)" t nil)
(autoload 'haskell-process-cabal "haskell-mode/haskell-process" "\
Prompts for a Cabal command to run.
\(fn)" t nil)
(autoload 'haskell-process-start "haskell-mode/haskell-process" "\
Start the inferior Haskell process.
\(fn SESSION)" nil nil)
(autoload 'haskell-process "haskell-mode/haskell-process" "\
Get the current process from the current session.
\(fn)" nil nil)
;;;***
;;;### (autoloads (haskell-session-process haskell-session haskell-session-maybe
;;;;;; haskell-session-installed-modules haskell-session-all-modules)
;;;;;; "haskell-mode/haskell-session" "haskell-mode/haskell-session.el"
;;;;;; (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-session.el
(autoload 'haskell-session-all-modules "haskell-mode/haskell-session" "\
Get all modules -- installed or in the current project.
If DONTCREATE is non-nil don't create a new session.
\(fn &optional DONTCREATE)" nil nil)
(autoload 'haskell-session-installed-modules "haskell-mode/haskell-session" "\
Get the modules installed in the current package set.
If DONTCREATE is non-nil don't create a new session.
\(fn &optional DONTCREATE)" nil nil)
(autoload 'haskell-session-maybe "haskell-mode/haskell-session" "\
Maybe get the Haskell session, return nil if there isn't one.
\(fn)" nil nil)
(autoload 'haskell-session "haskell-mode/haskell-session" "\
Get the Haskell session, prompt if there isn't one or fail.
\(fn)" nil nil)
(autoload 'haskell-session-process "haskell-mode/haskell-session" "\
Get the session process.
\(fn S)" nil nil)
;;;***
;;;### (autoloads (haskell-show-parse haskell-show-parse-and-insert
;;;;;; haskell-show-replace) "haskell-mode/haskell-show" "haskell-mode/haskell-show.el"
;;;;;; (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-show.el
(autoload 'haskell-show-replace "haskell-mode/haskell-show" "\
Replace the given region containing a Show value with a pretty
printed collapsible version.
\(fn START END)" nil nil)
(autoload 'haskell-show-parse-and-insert "haskell-mode/haskell-show" "\
Parse a `string' containing a Show instance value and insert
it pretty printed into the current buffer.
\(fn GIVEN)" nil nil)
(autoload 'haskell-show-parse "haskell-mode/haskell-show" "\
Parse the given input into a tree.
\(fn GIVEN)" nil nil)
;;;***
;;;### (autoloads (turn-on-haskell-simple-indent haskell-simple-indent-mode)
;;;;;; "haskell-mode/haskell-simple-indent" "haskell-mode/haskell-simple-indent.el"
;;;;;; (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-simple-indent.el
(autoload 'haskell-simple-indent-mode "haskell-mode/haskell-simple-indent" "\
Simple Haskell indentation mode that uses simple heuristic.
In this minor mode, `indent-for-tab-command' (bound to <tab> by
default) will move the cursor to the next indent point in the
previous nonblank line, whereas `haskell-simple-indent-backtab'
\(bound to <backtab> by default) will move the cursor the
previous indent point. An indent point is a non-whitespace
character following whitespace.
Runs `haskell-simple-indent-hook' on activation.
\(fn &optional ARG)" t nil)
(autoload 'turn-on-haskell-simple-indent "haskell-mode/haskell-simple-indent" "\
Turn on function `haskell-simple-indent-mode'.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-sort-imports) "haskell-mode/haskell-sort-imports"
;;;;;; "haskell-mode/haskell-sort-imports.el" (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-sort-imports.el
(autoload 'haskell-sort-imports "haskell-mode/haskell-sort-imports" "\
Sort the import list at the point.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-is-prefix-of haskell-string-take haskell-trim)
;;;;;; "haskell-mode/haskell-string" "haskell-mode/haskell-string.el"
;;;;;; (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-string.el
(autoload 'haskell-trim "haskell-mode/haskell-string" "\
\(fn STRING)" nil nil)
(autoload 'haskell-string-take "haskell-mode/haskell-string" "\
Take n chars from string.
\(fn STRING N)" nil nil)
(autoload 'haskell-is-prefix-of "haskell-mode/haskell-string" "\
Is x string a prefix of y string?
\(fn X Y)" nil nil)
;;;***
;;;### (autoloads (turn-on-haskell-unicode-input-method) "haskell-mode/haskell-unicode-input-method"
;;;;;; "haskell-mode/haskell-unicode-input-method.el" (21295 22752
;;;;;; 0 0))
;;; Generated autoloads from haskell-mode/haskell-unicode-input-method.el
(autoload 'turn-on-haskell-unicode-input-method "haskell-mode/haskell-unicode-input-method" "\
Set input method `haskell-unicode'.
See Info node `Unicode(haskell-mode)' for more details.
\(fn)" t nil)
;;;***
;;;### (autoloads (haskell-yas-complete) "haskell-mode/haskell-yas"
;;;;;; "haskell-mode/haskell-yas.el" (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/haskell-yas.el
(autoload 'haskell-yas-complete "haskell-mode/haskell-yas" "\
\(fn &rest ARGS)" nil nil)
;;;***
;;;### (autoloads (inferior-haskell-find-haddock inferior-haskell-find-definition
;;;;;; inferior-haskell-info inferior-haskell-kind inferior-haskell-type
;;;;;; inferior-haskell-send-decl inferior-haskell-load-and-run
;;;;;; inferior-haskell-load-file switch-to-haskell) "haskell-mode/inf-haskell"
;;;;;; "haskell-mode/inf-haskell.el" (21295 22752 0 0))
;;; Generated autoloads from haskell-mode/inf-haskell.el
(defalias 'run-haskell 'switch-to-haskell)
(autoload 'switch-to-haskell "haskell-mode/inf-haskell" "\
Show the inferior-haskell buffer. Start the process if needed.
\(fn &optional ARG)" t nil)
(autoload 'inferior-haskell-load-file "haskell-mode/inf-haskell" "\
Pass the current buffer's file to the inferior haskell process.
If prefix arg \\[universal-argument] is given, just reload the previous file.
\(fn &optional RELOAD)" t nil)
(autoload 'inferior-haskell-load-and-run "haskell-mode/inf-haskell" "\
Pass the current buffer's file to haskell and then run a COMMAND.
\(fn COMMAND)" t nil)
(autoload 'inferior-haskell-send-decl "haskell-mode/inf-haskell" "\
Send current declaration to inferior-haskell process.
\(fn)" t nil)
(autoload 'inferior-haskell-type "haskell-mode/inf-haskell" "\
Query the haskell process for the type of the given expression.
If optional argument `insert-value' is non-nil, insert the type above point
in the buffer. This can be done interactively with the \\[universal-argument] prefix.
The returned info is cached for reuse by `haskell-doc-mode'.
\(fn EXPR &optional INSERT-VALUE)" t nil)
(autoload 'inferior-haskell-kind "haskell-mode/inf-haskell" "\
Query the haskell process for the kind of the given expression.
\(fn TYPE)" t nil)
(autoload 'inferior-haskell-info "haskell-mode/inf-haskell" "\
Query the haskell process for the info of the given expression.
\(fn SYM)" t nil)
(autoload 'inferior-haskell-find-definition "haskell-mode/inf-haskell" "\
Attempt to locate and jump to the definition of the given expression.
\(fn SYM)" t nil)
(autoload 'inferior-haskell-find-haddock "haskell-mode/inf-haskell" "\
Find and open the Haddock documentation of SYM.
Make sure to load the file into GHCi or Hugs first by using C-c C-l.
Only works for functions in a package installed with ghc-pkg, or
whatever the value of `haskell-package-manager-name' is.
This function needs to find which package a given module belongs
to. In order to do this, it computes a module-to-package lookup
alist, which is expensive to compute (it takes upwards of five
seconds with more than about thirty installed packages). As a
result, we cache it across sessions using the cache file
referenced by `inferior-haskell-module-alist-file'. We test to
see if this is newer than `haskell-package-conf-file' every time
we load it.
\(fn SYM)" t nil)
;;;***
;;;### (autoloads nil nil ("haskell-mode/haskell-bot.el" "haskell-mode/haskell-checkers.el"
;;;;;; "haskell-mode/haskell-compat.el" "haskell-mode/haskell-debug.el"
;;;;;; "haskell-mode/haskell-package.el" "haskell-mode/haskell-presentation-mode.el"
;;;;;; "haskell-mode/haskell-str.el" "haskell-mode/haskell-utils.el"
;;;;;; "haskell-mode/w3m-haddock.el") (21295 22864 216077 0))
;;;***
(provide 'haskell-mode-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; haskell-mode-autoloads.el ends here