當前位置: 首頁>>代碼示例>>Python>>正文


Python GetCursorPosition.x方法代碼示例

本文整理匯總了Python中escutil.GetCursorPosition.x方法的典型用法代碼示例。如果您正苦於以下問題:Python GetCursorPosition.x方法的具體用法?Python GetCursorPosition.x怎麽用?Python GetCursorPosition.x使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在escutil.GetCursorPosition的用法示例。


在下文中一共展示了GetCursorPosition.x方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_HPA_DefaultParams

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
  def test_HPA_DefaultParams(self):
    """With no params, HPA moves to 1st column."""
    esccmd.HPA(6)

    position = GetCursorPosition()
    AssertEQ(position.x(), 6)

    esccmd.HPA()

    position = GetCursorPosition()
    AssertEQ(position.x(), 1)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:13,代碼來源:hpa.py

示例2: test_HVP_ColumnOnly

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
  def test_HVP_ColumnOnly(self):
    """Default row is 1."""
    esccmd.HVP(Point(6, 3))

    position = GetCursorPosition()
    AssertEQ(position.x(), 6)
    AssertEQ(position.y(), 3)

    esccmd.HVP(col=2)

    position = GetCursorPosition()
    AssertEQ(position.x(), 2)
    AssertEQ(position.y(), 1)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:15,代碼來源:hvp.py

示例3: test_CUP_RowOnly

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
  def test_CUP_RowOnly(self):
    """Default column is 1."""
    esccmd.CUP(Point(6, 3))

    position = GetCursorPosition()
    AssertEQ(position.x(), 6)
    AssertEQ(position.y(), 3)

    esccmd.CUP(row=2)

    position = GetCursorPosition()
    AssertEQ(position.x(), 1)
    AssertEQ(position.y(), 2)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:15,代碼來源:cup.py

示例4: test_HVP_DefaultParams

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
  def test_HVP_DefaultParams(self):
    """With no params, HVP moves to 1,1."""
    esccmd.HVP(Point(6, 3))

    position = GetCursorPosition()
    AssertEQ(position.x(), 6)
    AssertEQ(position.y(), 3)

    esccmd.HVP()

    position = GetCursorPosition()
    AssertEQ(position.x(), 1)
    AssertEQ(position.y(), 1)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:15,代碼來源:hvp.py

示例5: test_HVP_ZeroIsTreatedAsOne

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_HVP_ZeroIsTreatedAsOne(self):
   """Zero args are treated as 1."""
   esccmd.HVP(Point(6, 3))
   esccmd.HVP(col=0, row=0)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 1)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:hvp.py

示例6: test_RI_Basic

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_RI_Basic(self):
   """Reverse index moves the cursor up one line."""
   esccmd.CUP(Point(5, 3))
   esccmd.RI()
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 2)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:ri.py

示例7: test_VT_Basic

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_VT_Basic(self):
   """VT moves the cursor down one line."""
   esccmd.CUP(Point(5, 3))
   escio.Write(VT)
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 4)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:vt.py

示例8: test_NEL_Basic

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_NEL_Basic(self):
   """Next Line moves the cursor down one line and to the start of the next line."""
   esccmd.CUP(Point(5, 3))
   esccmd.NEL()
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 4)
開發者ID:DanDanHang,項目名稱:iTerm2,代碼行數:9,代碼來源:nel.py

示例9: test_CPL_ExplicitParam

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_CPL_ExplicitParam(self):
   """CPL moves the cursor up by the passed-in number of lines."""
   esccmd.CUP(Point(6, 5))
   esccmd.CPL(2)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:cpl.py

示例10: test_CHA_ZeroParam

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_CHA_ZeroParam(self):
   """CHA moves as far left as possible when given a zero parameter."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA(0)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:cha.py

示例11: test_HPR_DefaultParams

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
  def test_HPR_DefaultParams(self):
    """With no params, HPR moves right by 1."""
    esccmd.CUP(Point(6, 1))
    esccmd.HPR()

    position = GetCursorPosition()
    AssertEQ(position.x(), 7)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:hpr.py

示例12: test_CHA_ExplicitParam

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_CHA_ExplicitParam(self):
   """CHA moves to specified column of active line."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA(10)
   position = GetCursorPosition()
   AssertEQ(position.x(), 10)
   AssertEQ(position.y(), 3)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:cha.py

示例13: test_CHA_DefaultParam

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_CHA_DefaultParam(self):
   """CHA moves to first column of active line by default."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA()
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:cha.py

示例14: test_CUB_DefaultParam

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_CUB_DefaultParam(self):
   """CUB moves the cursor left 1 with no parameter given."""
   esccmd.CUP(Point(5, 3))
   esccmd.CUB()
   position = GetCursorPosition()
   AssertEQ(position.x(), 4)
   AssertEQ(position.y(), 3)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:cub.py

示例15: test_IND_Basic

# 需要導入模塊: from escutil import GetCursorPosition [as 別名]
# 或者: from escutil.GetCursorPosition import x [as 別名]
 def test_IND_Basic(self):
   """Index moves the cursor down one line."""
   esccmd.CUP(Point(5, 3))
   esccmd.IND()
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 4)
開發者ID:AndiDog,項目名稱:iTerm2,代碼行數:9,代碼來源:ind.py


注:本文中的escutil.GetCursorPosition.x方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。