Processar o conteúdo da área de transferência no Mac OS?

0

Eu quero ver se há uma ferramenta ou script disponível que eu possa usar para modificar o conteúdo da área de transferência imediatamente.

Normalmente, quando estou escrevendo código, gostaria de usar uma sequência de texto e torná-la uma lesma . Em vez de redigitar o conteúdo em formato de slug, seria fantástico se ele fosse transformado em um slug ao copiá-lo.

Por exemplo: "Churrasco com amigos" → "churrasco com amigos"

Sabe de algum aplicativo ou Applescripts que possa ajudar com isso? Muito apreciado.

    
por Chris Ullyott 22.08.2013 / 17:45

3 respostas

0

Combinei os scripts de aqui e here para criar um script que esclareça tudo o que estiver na área de transferência.

set theclip to the clipboard contents
on normalize(the_string)
    set p_script to ¬
        "# -*- coding: utf-8 -*-
import unicodedata, sys

def normalize(x):
    normal_form_1 = 'NFKD'
    normal_form_2 = 'NFC'
    x = unicodedata.normalize(normal_form_2, x)
    x = x.lower()
    x = x.replace(u'ß', u'ss')
    x = x.replace(u'å', u'aa')
    x = unicodedata.normalize(normal_form_1, x)
    x = u''.join([c for c in x if not unicodedata.combining(c)])
    x = x.encode('utf-8')
    return x
arg = sys.argv[1].decode('utf-8')
x = normalize(arg)
print x"

    set p_script to quoted form of p_script
    set the_string to quoted form of the_string

    return (do shell script ("python -c " & p_script & " " & the_string))
end normalize
on change_case(this_text)
    set the comparison_string to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    set the source_string to "abcdefghijklmnopqrstuvwxyz"
    set the new_text to ""
    repeat with this_char in this_text
        set x to the offset of this_char in the comparison_string
        if x is not 0 then
            set the new_text to (the new_text & character x of the source_string) as string
        else
            set the new_text to (the new_text & this_char) as string
        end if
    end repeat
    return the new_text
end change_case
on replace_chars(this_text, search_string, replacement_string)
    set AppleScript's text item delimiters to the search_string
    set the item_list to every text item of this_text
    set AppleScript's text item delimiters to the replacement_string
    set this_text to the item_list as string
    set AppleScript's text item delimiters to ""
    return this_text
end replace_chars

set theresult to normalize(theclip)
set theresult to replace_chars(theresult, " ", "-")
set theresult to change_case(theresult)

editar 1 Se você quiser slugify a string para usar como URL, adicione isso ao final desse script:

set theresult to replace_chars(theresult, "%", "%25")
set theresult to replace_chars(theresult, "<", "%3C")
set theresult to replace_chars(theresult, ">", "%3E")
set theresult to replace_chars(theresult, "#", "%23")
set theresult to replace_chars(theresult, "{", "%7B")
set theresult to replace_chars(theresult, "}", "%7D")
set theresult to replace_chars(theresult, "|", "%7C")
set theresult to replace_chars(theresult, "\", "%5C")
set theresult to replace_chars(theresult, "^", "%5E")
set theresult to replace_chars(theresult, "~", "%7E")
set theresult to replace_chars(theresult, "[", "%5B")
set theresult to replace_chars(theresult, "]", "%5D")
set theresult to replace_chars(theresult, "'", "%60")
set theresult to replace_chars(theresult, ";", "%3B")
set theresult to replace_chars(theresult, "/", "%2F")
set theresult to replace_chars(theresult, "?", "%3F")
set theresult to replace_chars(theresult, ":", "%3A")
set theresult to replace_chars(theresult, "@", "%40")
set theresult to replace_chars(theresult, "=", "%3D")
set theresult to replace_chars(theresult, "&", "%26")
set theresult to replace_chars(theresult, "$", "%24")
    
por 22.08.2013 / 18:08
0

Eu uso funções como esta:

f() {
  (. ~/Scripts/f; "$@")
}

ff() {
  pbpaste | f "$@" | pbcopy
}

(Eu uso as funções em ~/Scripts/f do emacs e das visualizações de texto do OS X com mais frequência).

~/Scripts/f pode conter uma função como esta:

slug() {
  LC_ALL=C tr A-Z a-z | LC_ALL=C tr -cs a-z0-9 - | sed 's/^-//;s/-$//'
}

tr -c é complemento e tr -s espreme vários hífens em hífens simples.

    
por 22.08.2013 / 19:50
0

Eu tenho um script que executa uma ação semelhante em nomes de arquivos, embora eu substitua espaços por sublinhados. Você poderia usar algo como:

pbpaste | sed -e 's/ /-/g' | awk '{print tolower($0)}' | pbcopy 

combinado com um pequeno pedaço de applescript para formar:

do shell script "pbpaste | sed -e 's/ /-/g' | awk '{print tolower($0)}' | pbcopy" 
    
por 31.01.2014 / 23:21