Skip to content

Commit

Permalink
GitBook: [master] 3 pages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
yemreak authored and gitbook-bot committed Dec 7, 2019
1 parent 4b86d46 commit 783d6ee
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 15 deletions.
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* [💫 AutoHotkey](autohotkey/README.md)
* [🔰 AutoHotkey'e Giriş](autohotkey/giris.md)
* [🧱 AHK Temel İşlemler](autohotkey/ahk-temel-islemler.md)
* [✨ Diğer İşlemler](autohotkey/diger-islemler.md)
* [💞 Kısayollar ve Tamamlamalar](autohotkey/diger-islemler.md)
* [🎌 AHK Tavsiyelerim](autohotkey/ahk-tavsiyelerim.md)
* [👨‍💻 AHK Scriptleri](autohotkey/scripts.md)
* [🥽 Awesome Windows](awesome.md)
Expand Down
33 changes: 29 additions & 4 deletions autohotkey/diger-islemler.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ✨ Diğer İşlemler
# 💞 Kısayollar ve Tamamlamalar

## 💞 Kısayollar ve Tamamlamalar
## 🔰 Kısayolları Tanıyalım

* 🧱 Kısayollar işlemleri `Hot` ön eki ile tanımlanır
* 💫 Metin düzenleme için [`HotStrings`](https://www.autohotkey.com/docs/Hotstrings.htm)
Expand All @@ -13,7 +13,7 @@
* `::` ile tanımlanırlar
* 🧹 Bu tuşlara basılması durumunda, yazılan silinir
* 🛒 Sizin belirttiğiniz kelime yazılır
*

### ⚙️ HotStrings Ayarları

| 💎 Özellik | 📑 Açıklama |
Expand All @@ -23,8 +23,10 @@
| `#Hotstring Z` | Kısayol tetiklendikten sonra sıfırlanır \(tekrarlı kısayolları engeller\) |
| `#Hotstring C0` | Büyük küçük harfi farkını görmezden gelir |

### ⭐ HotStrings Örneği

```haskell
#Hotstring O ;Bitirme karakterleri kaldırma
#Hotstring O ; Bitirme karakterleri kaldırma
#Hotstring EndChars :

:::help::😀
Expand All @@ -34,5 +36,28 @@
🧙‍♂️️ Ek ayarlara [Options](https://www.autohotkey.com/docs/Hotstrings.htm#Options) alanından erişebilirsin
{% endhint %}

## ⌨️ HotKeys

* ✨ Klavye kısayolları `<buton>::` yapısı ile oluşturulur
* 👮‍♂️ İşlemin sonunda `return` yazmayı unutma, aksi halde altındakiler de çalışır.

### ✨ Hotkeys Butonları

| Symbol | Description |
| :--- | :--- |
| `#` | Win \(Windows logo key\) |
| `!` | Alt |
| `^` | Control |
| `+` | Shift |
| `&` | An ampersand may be used between any two keys or mouse buttons to combine them into a custom hotkey. |

### ⭐ HotKeys Örneği

```haskell
#+G::
Send ^c
Sleep, 50
Run "http://www.google.com/search?q=%clipboard%"
return
```

10 changes: 0 additions & 10 deletions autohotkey/giris.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,6 @@ Windows 10'da denenmiştir.
| 🚀 [AutoHotkey++](https://marketplace.visualstudio.com/items?itemName=vinnyjames.vscode-autohotkey-vj) | Renklendirme, kod önerileri ve snippets |
| 👨‍💼 [AutoHotkey Manager](https://marketplace.visualstudio.com/items?itemName=Denis-net.vscode-ahk-manager) | Derleme, çalıştırma, durdurma butonları ekler |

## ✨ Kısayol Tanımlamaları

| Symbol | Description |
| :--- | :--- |
| `#` | Win \(Windows logo key\) |
| `!` | Alt |
| `^` | Control |
| `+` | Shift |
| `&` | An ampersand may be used between any two keys or mouse buttons to combine them into a custom hotkey. |

## 🔗 Harici Bağlantılar

* [👜 Windows Mağazasından İndirilen Uygulamaları Komut ile Çalıştırma](https://github.com/yedhrab/YWindows10/tree/0c092d489e79c475b0a1f5ae555a12a98465b295/3%20-%20Windows%2010%20Diğer%20Notlar/Windows%2010%20Diğer%20Notlar/Windows%20Mağazasından%20İndirilen%20Uygulamaları%20Komut%20ile%20Çalıştırma.md)
Expand Down

0 comments on commit 783d6ee

Please sign in to comment.