Login
Back to Blog
12|Claude Code with Crazyrouter Series 12: Chapter 9: Common Keyboard Shortcuts

12|Claude Code with Crazyrouter Series 12: Chapter 9: Common Keyboard Shortcuts

C
Crazyrouter Team
June 10, 2026
0 viewsEnglishClaude Code
Share:

12|Claude Code with Crazyrouter Series 12: Chapter 9: Common Keyboard Shortcuts#

This is the 12th article in the Crazyrouter Claude Code series. This article focuses on “Claude Code with Crazyrouter Series 12: Chapter 9: Common Keyboard Shortcuts,” covering Chapter 9: Common Keyboard Shortcuts, 9.1 Keyboard Shortcuts and Quick Actions, and common keyboard shortcuts.

Unified access convention: for Claude Code / Anthropic native clients, use ANTHROPIC_BASE_URL=https://cn.crazyrouter.com; for OpenAI-compatible SDKs, HTTP requests, and frontend/backend applications, use base_url=https://cn.crazyrouter.com/v1.

What This Article Covers#

  • Who this is for: developers who are using Claude Code, preparing to connect to domestic models, or looking to unify team-wide model calls through Crazyrouter.
  • What you will learn: how to configure environment variables according to the Crazyrouter documentation, organize workflows, and avoid the /v1/v1/... issue caused by an incorrect Base URL.
  • Recommended preparation: first create a dedicated API Token in the Crazyrouter console, then follow the Claude Code integration documentation to complete the basic configuration.

Chapter 9: Common Keyboard Shortcuts#

9.1 Keyboard Shortcuts and Quick Actions#

Mastering keyboard shortcuts and quick actions can greatly improve your efficiency when using Claude Code, helping you complete tasks faster.

Common Keyboard Shortcuts#

Basic Keyboard Shortcuts#

Send a message

  • Windows/Linux: Ctrl + Enter
  • macOS: Cmd + Enter

Start a new conversation

  • Windows/Linux: Ctrl + Shift + N
  • macOS: Cmd + Shift + N

Open settings

  • Windows/Linux: Ctrl + ,
  • macOS: Cmd + ,

Open help

  • Windows/Linux: Ctrl + /
  • macOS: Cmd + /

Editing Shortcuts#

Copy a message

  • Windows/Linux: Ctrl + C
  • macOS: Cmd + C

Paste content

  • Windows/Linux: Ctrl + V
  • macOS: Cmd + V

Cut content

  • Windows/Linux: Ctrl + X
  • macOS: Cmd + X

Select all

  • Windows/Linux: Ctrl + A
  • macOS: Cmd + A

Undo

  • Windows/Linux: Ctrl + Z
  • macOS: Cmd + Z

Redo

  • Windows/Linux: Ctrl + Y or Ctrl + Shift + Z
  • macOS: Cmd + Y or Cmd + Shift + Z

Scroll up

  • Page Up or Shift + Space

Scroll down

  • Page Down or Space

Scroll to the top

  • Home

Scroll to the bottom

  • End

Switch to the previous tab

  • Windows/Linux: Ctrl + Tab
  • macOS: Cmd + Tab

Switch to the next tab

  • Windows/Linux: Ctrl + Shift + Tab
  • macOS: Cmd + Shift + Tab

Search Shortcuts#

Search conversation history

  • Windows/Linux: Ctrl + F
  • macOS: Cmd + F

Search files

  • Windows/Linux: Ctrl + P
  • macOS: Cmd + P

Global search

  • Windows/Linux: Ctrl + Shift + F
  • macOS: Cmd + Shift + F

Quick Action Buttons#

Chat Window Actions#

Send button

  • Location: right side of the input box
  • Function: send a message
  • Shortcut: Ctrl/Cmd + Enter

Upload file button

  • Location: above the input box
  • Function: upload local files
  • Usage: click the button and select a file

Insert code button

  • Location: above the input box
  • Function: insert a code block
  • Usage: click the button and enter code

Format text button

  • Location: above the input box
  • Function: adjust text formatting
  • Usage: click the button and choose a format

Message Actions#

Copy button

  • Location: right side of each message
  • Function: copy message content
  • Usage: click the button to copy the content to the clipboard

Regenerate button

  • Location: right side of each message
  • Function: ask the AI to regenerate this response
  • Usage: click the button, and the AI will regenerate the response

Like button

  • Location: right side of each message
  • Function: like the response
  • Usage: click the button to provide quality feedback

Dislike button

  • Location: right side of each message
  • Function: dislike the response
  • Usage: click the button to provide quality feedback

Toolbar Actions#

New conversation button

  • Location: toolbar
  • Function: start a new conversation
  • Shortcut: Ctrl/Cmd + Shift + N

History button

  • Location: toolbar
  • Function: view and manage past conversations
  • Usage: click the button to open the history panel

Settings button

  • Location: toolbar
  • Function: open the settings screen
  • Shortcut: Ctrl/Cmd + ,

Help button

  • Location: toolbar
  • Function: view usage help
  • Shortcut: Ctrl/Cmd + /

Batch Processing Tips#

Batch Upload Files#

Method 1: Multi-select upload

  1. Click the upload file button
  2. In the file selection dialog, hold down Ctrl (Windows/Linux) or Cmd (macOS)
  3. Click multiple files
  4. Click “Open”

Method 2: Drag-and-drop upload

  1. Select multiple files in the file manager
  2. Drag them to the file browsing area in Claude Code
  3. Release the mouse button

Batch Process Messages#

Batch copy

  1. Select multiple messages in the conversation history
  2. Press Ctrl/Cmd + C to copy
  3. Paste them somewhere else

Batch delete

  1. Select multiple conversations in history
  2. Click the delete button
  3. Confirm deletion

Batch Execute Commands#

Send messages in batch

  1. Prepare multiple prompts
  2. Send them to Claude Code one by one
  3. Collect all responses

Generate content in batch

  1. Use a template to generate multiple versions
  2. Choose the best version
  3. Save the result

Productivity Tips#

Quickly Switch Models#

Method 1: From the toolbar

  1. Click the model selection dropdown in the toolbar
  2. Select the model you want
  3. Start using it

Method 2: Using a command

  1. Enter the following in the input box: /model [model name]
  2. Press Enter to send
  3. The system switches to the specified model

Example:

bash
/model claude
/model wenxin
/model qwen

Quickly Access History#

Method 1: Through the history panel

  1. Click the “History” button in the toolbar
  2. Browse past conversations
  3. Click the conversation you want to view

Method 2: Through search

  1. Press Ctrl/Cmd + F to open search
  2. Enter keywords
  3. View the search results

Quickly Switch Views#

Switch chat windows

  • Click a chat window tab
  • Or use the shortcut Ctrl/Cmd + Tab

Switch the file browsing area

  • Click the file browsing area tab
  • Or use the shortcut Ctrl/Cmd + Shift + Tab

Switch full-screen mode

  • Press F11 to enter/exit full screen
  • Or click the full-screen button in the toolbar

Example Case#

Case: Quickly Process Multiple Files#

Scenario: You need to quickly process 10 Excel files and extract key information.

Steps:

  1. Batch upload files

    • Select 10 Excel files in the file manager
    • Drag them to the file browsing area in Claude Code
  2. Batch process

bash
Please help me process these 10 files:
1. Extract the total sales from each file
2. Calculate the average sales for each file
3. Identify the product with the highest sales in each file
4. Generate a summary table
  1. Save the results
  • Copy the generated summary table
    • Paste it into Excel and save it

Time saved:

  • Original time: 2–3 hours
  • Current time: 10–15 minutes
  • Time saved: 90%

Example: Quickly generate multiple pieces of copy#

Scenario: You need to generate copy for 5 products.

Steps:

  1. Prepare a template
bash
Please help me write product copy. The product is [Product Name], its main features include [Feature 1], [Feature 2], and [Feature 3], and the target users are [Target Users]. Keep it to about 200 Chinese characters.
  1. Generate in batches

    • Product 1: Use the template and fill in the product information
    • Product 2: Use the template and fill in the product information
    • Product 3: Use the template and fill in the product information
    • Product 4: Use the template and fill in the product information
    • Product 5: Use the template and fill in the product information
  2. Choose the best version

    • Review all generated copy
    • Choose the best version
    • Save the result

Time saved:

  • Original time: 1–2 hours
  • Current time: 10–15 minutes
  • Time saved: 85%

Tips#

  1. Memorize common shortcuts: Remembering frequently used shortcuts can greatly improve efficiency
  2. Customize shortcuts: You can customize shortcuts in settings
  3. Use quick actions: Use quick action buttons more often to reduce mouse clicks
  4. Batch processing: Process files and tasks in batches whenever possible
  5. Quick switching: Become proficient with quick-switching features
  6. Clean up regularly: Regularly clear history and temporary files

Now, try using these shortcuts and quick actions to improve your productivity.

9.2 Building Good Work Habits#

Building good work habits helps you use Claude Code more efficiently and turn AI into a capable assistant.

Use AI Assistants Wisely#

Define AI’s Role Clearly#

AI is an assistant, not a replacement

  • AI can help you complete many tasks, but it cannot fully replace your thinking
  • AI’s suggestions require your judgment and decisions
  • AI’s output requires your review and adjustment

AI is a tool, not a cure-all

  • AI has its own limitations and cannot solve every problem
  • AI’s knowledge has a cutoff date and may not include the latest information
  • AI’s understanding is limited, so you need to provide clear requirements

When to Use AI#

Scenarios suited for AI

  1. Repetitive tasks: such as writing reports, organizing data, and generating copy
  2. Creative tasks: such as brainstorming, generating ideas, and writing stories
  3. Analytical tasks: such as data analysis, trend analysis, and finding insights
  4. Optimization tasks: such as polishing text, adjusting formatting, and rewriting content

Scenarios not suited for AI

  1. Highly confidential tasks: such as handling sensitive data or confidential information
  2. Tasks requiring professional judgment: such as legal advice or medical diagnosis
  3. Tasks requiring emotional communication: such as comforting customers or handling disputes
  4. Tasks requiring real-time information: such as stock quotes or news updates

How to Collaborate with AI#

  1. Clarify requirements
  • Express your requirements clearly
  • Provide enough background information
  • Specify the expected output format
  1. Iterate and optimize
  • Do not expect a perfect result on the first try
  • Keep improving based on feedback
  • Patiently refine your prompts
  1. Human review
  • Important tasks must be reviewed by a person
  • Check the accuracy of the results
  • Adjust anything that does not meet the requirements
  1. Continuous learning
  • Record effective prompts
  • Summarize usage experience
  • Continuously optimize your workflow

Balance Human Work and AI#

Human Strengths#

  1. Creativity
  • Humans have unique creativity
  • Humans can generate original ideas
  • Humans can create art
  1. Emotional understanding
  • Humans can understand emotions
  • Humans can communicate emotionally
  • Humans can handle complex interpersonal relationships
  1. Professional judgment
  • Humans have professional knowledge and experience
  • Humans can make complex judgments
  • Humans can handle ambiguous situations
  1. Accountability
  • Humans can take responsibility
  • Humans can make moral judgments
  • Humans can handle ethical issues

AI Strengths#

  1. Processing speed
  • AI processes information quickly
  • AI can batch-process tasks
  • AI can work 24 hours a day
  1. Data processing
  • AI can process large amounts of data
  • AI can analyze data quickly
  • AI can identify patterns in data
  1. Knowledge base
  • AI has a rich knowledge base
  • AI can quickly retrieve information
  • AI can integrate knowledge across multiple fields
  1. Consistency
  • AI produces consistent output
  • AI does not get tired
  • AI is not affected by emotions

How to Strike the Right Balance#

  1. Assign tasks
  • Give repetitive, standardized tasks to AI
  • Keep creative tasks and tasks requiring judgment for people
  • Allocate work based on the characteristics of each task
  1. Collaboration workflow
  • A person defines the requirements
  • AI generates a draft
  • A person reviews and adjusts it
  • AI optimizes based on feedback
  1. Quality control
  • A person sets quality standards
  • AI generates content according to those standards
  • A person reviews quality
  • AI improves based on feedback

Keep Learning and Exploring#

Learn New Features#

Follow updates

  • Check Claude Code release notes regularly
  • Learn about new features and improvements
  • Try using new features

Learn techniques

  • Read the official documentation
  • Watch tutorial videos
  • Attend training courses

Apply in practice

  • Apply new features in real work
  • Summarize your usage experience
  • Share it with colleagues

Explore New Uses#

Try new scenarios

  • Try using AI for new tasks
  • Explore AI applications in different fields
  • Discover more possibilities for AI

Optimize workflows

  • Continuously optimize your AI workflow
  • Improve work efficiency
  • Save more time

Innovative applications

  • Think about innovative AI applications
  • Combine AI with the characteristics of your own work
  • Create unique ways to use it

Build a Knowledge Base#

Record prompts

  • Record effective prompts
  • Categorize and organize prompts
  • Build a prompt library

Summarize experience

  • Summarize your experience using AI
  • Record successful cases
  • Analyze the causes of failures

Share and communicate

  • Share experience with colleagues
  • Participate in community discussions
  • Learn from each other and improve together

Example Cases#

Example: Build an Efficient Workflow#

Scenario: A marketer needs to regularly generate various types of marketing copy.

Workflow:

  1. Build a prompt library
  • Product description prompts
  • Ad copy prompts
  • Social media content prompts
  • Email writing prompts
  1. Create templates
  • Product description templates
  • Ad copy templates
  • Social media content templates
  • Email writing templates
  1. Generate in batches
  • Use templates to generate copy in batches
  • Choose the best version
  • Save the result
  1. Human review
  • Review the generated copy
  • Adjust anything that does not meet the requirements
  • Ensure quality
  1. Continuous optimization
  • Optimize prompts based on feedback
  • Improve templates
  • Increase efficiency

Results:

  • Original time: 8–10 hours per week
  • Current time: 2–3 hours per week
  • Time saved: 70–75%

Example: Balance Human Work and AI#

Scenario: Customer support staff need to reply to customer emails.

Workflow:

  1. AI generates a draft
  • Provide the customer email content
  • AI generates a draft reply
  • AI provides multiple versions
  1. Human review
  • Review the draft for accuracy
  • Check whether the tone is appropriate
  • Confirm that the content is complete
  1. Human adjustment
  • Adjust inappropriate content
  • Add missing information
  • Improve the wording
  1. Send the email
  • Send it to the customer
  • Record customer feedback
  • Summarize the experience

Results:

  • Original time: 15–20 minutes per email
  • Current time: 5–8 minutes per email
  • Time saved: 60–70%
  • Customer satisfaction: unchanged or improved

Tips#

  1. Start with small tasks: Begin using AI on simple tasks first to build experience
  2. Expand gradually: As you gain experience, gradually expand the scope of AI usage
  3. Keep learning: Continue learning new features and new use cases
  4. Summarize regularly: Regularly summarize usage experience and optimize your workflow
  5. Share and communicate: Share experience with colleagues and learn from each other
  6. Maintain balance: Use AI appropriately and avoid over-reliance

Now, start building good work habits and make AI your capable assistant.


Getting Started with Crazyrouter#

If you're ready to connect Claude Code, domestic models, or your own application to Crazyrouter through a single gateway, follow this sequence:

  1. Go to the Crazyrouter console, create a dedicated API Token, and manage permissions separately by project or team.
  2. Use the root domain for Claude Code: https://cn.crazyrouter.com; use https://cn.crazyrouter.com/v1 for OpenAI-compatible SDKs.
  3. When you need to automatically check the environment or quickly write configuration, use the Crazyrouter Claude Code one-click setup script.
  4. If debugging fails, check the console logs first, then verify the API Endpoint documentation, paying special attention to whether the Base URL has an extra /v1.

When evaluating model costs or choosing among models, first review the Crazyrouter pricing and models page, then add the models you use most often to the Token allowlist.

Implementation Guides

Related Posts

01|Quick Start: Connecting Claude Code to CrazyrouterClaude Code

01|Quick Start: Connecting Claude Code to Crazyrouter

01|Quick Start: Connecting Claude Code to Crazyrouter. This article covers unified access, configuration checks, and practical workflows for using Claude Code with Crazyrouter, helping readers follow the site documentation to build a reusable development workflow.

Jun 10
17|Claude Code Integration with Crazyrouter, Part 17: From Idea to AI ProductClaude Code

17|Claude Code Integration with Crazyrouter, Part 17: From Idea to AI Product

17|Claude Code Integration with Crazyrouter, Part 17: From Idea to AI Product. This article covers unified access for Claude Code and Crazyrouter, configuration checks, and hands-on workflows to help readers follow the site docs and build a reusable development workflow.

Jun 10
14|Chapter 11: Using Advanced Claude Features — Crazyrouter Series 14Claude Code

14|Chapter 11: Using Advanced Claude Features — Crazyrouter Series 14

14|Chapter 11: Using Advanced Claude Features — Crazyrouter Series 14. This article covers unified access, configuration checks, and hands-on workflows for Claude Code and Crazyrouter, helping readers follow the site documentation to build reusable development workflows.

Jun 10
13|Claude Code with Crazyrouter, Part 13: Chapter 10: Solving Problems with a Programming MindsetClaude Code

13|Claude Code with Crazyrouter, Part 13: Chapter 10: Solving Problems with a Programming Mindset

13|Claude Code with Crazyrouter, Part 13: Chapter 10: Solving Problems with a Programming Mindset. This article covers unified integration, configuration checks, and hands-on workflows for Claude Code and Crazyrouter, helping readers follow the site documentation to build reusable development workflows.

Jun 10
11|Claude Code with Crazyrouter Series 11: Chapter 8: Prompt Optimization TipsClaude Code

11|Claude Code with Crazyrouter Series 11: Chapter 8: Prompt Optimization Tips

11|Claude Code with Crazyrouter Series 11: Chapter 8: Prompt Optimization Tips. This article covers unified integration, configuration checks, and practical workflows for Claude Code and Crazyrouter, helping readers follow the site documentation to build reusable development workflows.

Jun 10
10|Claude Code with Crazyrouter, Part 10: Chapter 7 — Personalized WorkflowsClaude Code

10|Claude Code with Crazyrouter, Part 10: Chapter 7 — Personalized Workflows

10|Claude Code with Crazyrouter, Part 10: Chapter 7 — Personalized Workflows. This article walks through unified access, configuration checks, and practical workflows for using Claude Code with Crazyrouter, helping readers build a reusable development workflow based on the site documentation.

Jun 10