Skip to content

Instantly share code, notes, and snippets.

View huseyincorakli's full-sized avatar
🤪

HÜSEYİN ÇORAKLI huseyincorakli

🤪
View GitHub Profile
@huseyincorakli
huseyincorakli / kitty.md
Created December 8, 2025 07:48 — forked from AskinNet/kitty.md
Kitty CheatSheet

Default shortcuts

Scrolling

Action Shortcut
Scroll line up ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS)
Scroll line down ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS)
Scroll page up ctrl+shift+page_up (also ⌘+⇞ on macOS)
Scroll page down ctrl+shift+page_down (also ⌘+⇟ on macOS)
@huseyincorakli
huseyincorakli / gist:15bb650d289578e8640024ad8c20d1db
Created September 10, 2024 23:23
React Native Functional Component VS Code Snippet
{
"React Native Functional Component": {
"prefix": "fc",
"body": [
"import React, { FC, useState } from 'react';",
"import {SafeAreaView, StyleSheet, Text, View } from 'react-native';",
"",
"const ${1:ComponentName}: FC = () => {",
" const [counter, setCounter] = useState<number>(0);",
"",