add all the missing modes

This commit is contained in:
Andrea Crotti 2019-03-09 18:35:58 +00:00
parent 037b60e0df
commit a4fa2e3596
No known key found for this signature in database
GPG Key ID: 88DC3F2180C34EDB
353 changed files with 597 additions and 225 deletions

View File

@ -84,5 +84,25 @@
(hiccup/html (hiccup/html
(structure tables))))) (structure tables)))))
(def mode-line "# -*- mode: snippet -*-")
(defn all-snips
[d]
(filter #(and (.isFile %)
(not= (.getName %) ".yas-parents")
(not (.endsWith (str %) ".el")))
(file-seq (io/file d))))
(defn fix-all-modelines
[snips]
(doseq [s snips]
(let [content (-> s slurp str/split-lines)
f-line (first content)]
(when-not (str/includes? f-line "# -*- mode")
(println "Writing to " s)
(spit s (str/join "\n" (cons mode-line content)))))))
(comment (comment
(gen-html "../snippets")) (gen-html "../snippets"))

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: namespace ... # name: namespace ...
# key: ns # key: ns
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: using namespace ... # name: using namespace ...
# key: using # key: using
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: #ifndef XXX; #define XXX; #endif # name: #ifndef XXX; #define XXX; #endif
# key: once # key: once
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: do { ... } while (...) # name: do { ... } while (...)
# key: do # key: do
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: struct ... { ... } # name: struct ... { ... }
# key: struct # key: struct
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: bench # name: bench
# key: bench # key: bench
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: bp # name: bp
# key: bp # key: bp
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: def # name: def
# key: def # key: def
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: defmacro # name: defmacro
# key: defm # key: defm
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: defn # name: defn
# key: defn # key: defn
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: defrecord # name: defrecord
# key: defr # key: defr
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: deftype # name: deftype
# key: deft # key: deft
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: doseq # name: doseq
# key: doseq # key: doseq
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: fn # name: fn
# key: fn # key: fn
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: for # name: for
# key: for # key: for
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: if # name: if
# key: if # key: if

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: ifl # name: ifl
# key: ifl # key: ifl

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: import # name: import
# key: import # key: import
# expand-env: ((yas-triggers-in-field nil)) # expand-env: ((yas-triggers-in-field nil))

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: is # name: is
# key: is # key: is

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: let # name: let
# key: let # key: let

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: map # name: map
# key: map # key: map

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: map lambda # name: map lambda
# key: map # key: map

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: mdoc # name: mdoc
# key: mdoc # key: mdoc

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: ns # name: ns
# key: ns # key: ns

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# key: opts # key: opts
# name: opts # name: opts
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: pr # name: pr
# key: pr # key: pr

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: print # name: print
# key: print # key: print

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: reduce # name: reduce
# key: reduce # key: reduce

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: require # name: require
# key: require # key: require
# expand-env: ((yas-triggers-in-field nil)) # expand-env: ((yas-triggers-in-field nil))

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: test # name: test
# key: test # key: test
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: try # name: try
# key: try # key: try
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: use # name: use
# key: use # key: use
# expand-env: ((yas-triggers-in-field nil)) # expand-env: ((yas-triggers-in-field nil))

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: when # name: when
# key: when # key: when

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# name: whenl # name: whenl
# key: whenl # key: whenl

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private attribute ....; # name: private attribute ....;
# key: attrib # key: attrib

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private attribute ....; public property ... ... { ... } # name: private attribute ....; public property ... ... { ... }
# key: attrib # key: attrib

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: private _attribute ....; public Property ... ... { ... } # name: private _attribute ....; public Property ... ... { ... }
# key: attrib # key: attrib

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: class ... { ... } # name: class ... { ... }
# key: class # key: class

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <summary> ... </summary> # name: /// <summary> ... </summary>
# key: comment # key: comment

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <param name="..."> ... </param> # name: /// <param name="..."> ... </param>
# key: comment # key: comment

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <param name="..."> ... </param> # name: /// <param name="..."> ... </param>
# key: comment # key: comment

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: /// <exception cref="..."> ... </exception> # name: /// <exception cref="..."> ... </exception>
# key: comment # key: comment

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Jostein Kjønigsen <jostein@kjonigsen.net> # contributor : Jostein Kjønigsen <jostein@kjonigsen.net>
# name: foreach { ... } # name: foreach { ... }
# key: fore # key: fore

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: public void Method { ... } # name: public void Method { ... }
# key: method # key: method

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: namespace .. { ... } # name: namespace .. { ... }
# key: namespace # key: namespace

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: property ... ... { ... } # name: property ... ... { ... }
# key: prop # key: prop

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: #region ... #endregion # name: #region ... #endregion
# key: region # key: region

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using ...; # name: using ...;
# key: using # key: using

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using System; # name: using System;
# key: using # key: using

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx> # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
# name: using System....; # name: using System....;
# key: using # key: using

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: background-color: ... # name: background-color: ...
# -- # --
background-color: #${1:DDD}; background-color: #${1:DDD};

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: background-image: ... # name: background-image: ...
# -- # --
background-image: url($1); background-image: url($1);

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: border size style color # name: border size style color
# -- # --
border: ${1:1px} ${2:solid} #${3:999}; border: ${1:1px} ${2:solid} #${3:999};

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: clear: ... # name: clear: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: display: block # name: display: block
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: display: inline # name: display: inline
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: display: none # name: display: none
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: font-family: ... # name: font-family: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: font-size: ... # name: font-size: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-bottom: ... # name: margin-bottom: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-left: ... # name: margin-left: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin: ... # name: margin: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin top right bottom left # name: margin top right bottom left
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-right: ... # name: margin-right: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: margin-top: ... # name: margin-top: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-bottom: ... # name: padding-bottom: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-left: ... # name: padding-left: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding: ... # name: padding: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding: top right bottom left # name: padding: top right bottom left
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-right: ... # name: padding-right: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor : rejeep <johan.rejeep@gmail.com> # contributor : rejeep <johan.rejeep@gmail.com>
# name: padding-top: ... # name: padding-top: ...
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
-*- coding: utf-8 -*- -*- coding: utf-8 -*-
Originally started by Xah Lee (xahlee.org) on 2009-02-22 Originally started by Xah Lee (xahlee.org) on 2009-02-22
Released under GPL 3. Released under GPL 3.

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: and # name: and
# key: and # key: and

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: aref # name: aref
# key: aref # key: aref

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: aset # name: aset
# key: aset # key: aset

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: assq # name: assq
# key: assq # key: assq

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: autoload # name: autoload
# key: autoload # key: autoload

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: backward-char # name: backward-char
# key: backward-char # key: backward-char

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: beginning-of-line # name: beginning-of-line
# key: beginning-of-line # key: beginning-of-line

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: bounds-of-thing-at-point # name: bounds-of-thing-at-point
# key: bounds-of-thing-at-point # key: bounds-of-thing-at-point

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: buffer-file-name # name: buffer-file-name
# key: buffer-file-name # key: buffer-file-name

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: buffer-modified-p # name: buffer-modified-p
# key: buffer-modified-p # key: buffer-modified-p

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: buffer-substring # name: buffer-substring
# key: buffer-substring # key: buffer-substring

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: buffer-substring-no-properties # name: buffer-substring-no-properties
# key: buffer-substring-no-properties # key: buffer-substring-no-properties

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: cond # name: cond
# key: cond # key: cond

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: condition-case # name: condition-case
# key: condition-case # key: condition-case

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: copy-directory # name: copy-directory
# key: copy-directory # key: copy-directory

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: copy-file # name: copy-file
# key: copy-file # key: copy-file

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: current-buffer # name: current-buffer
# key: current-buffer # key: current-buffer

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: custom-autoload # name: custom-autoload
# key: custom-autoload # key: custom-autoload

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: defalias # name: defalias
# key: defalias # key: defalias

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: defcustom # name: defcustom
# key: defcustom # key: defcustom

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: define-key # name: define-key
# key: define-key # key: define-key

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# name: defvar # name: defvar
# key: defvar # key: defvar
# -- # --

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: delete-char # name: delete-char
# key: delete-char # key: delete-char

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: delete-directory # name: delete-directory
# key: delete-directory # key: delete-directory

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: delete-file # name: delete-file
# key: delete-file # key: delete-file

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: delete-region # name: delete-region
# key: delete-region # key: delete-region

View File

@ -1,3 +1,4 @@
# -*- mode: snippet -*-
# contributor: Xah Lee (XahLee.org) # contributor: Xah Lee (XahLee.org)
# name: directory-files # name: directory-files
# key: directory-files # key: directory-files

Some files were not shown because too many files have changed in this diff Show More